Improve help files

Minor improvement of various help files.  Made format of help
files more consistent.
This commit is contained in:
Landon Curt Noll
2021-12-05 23:02:12 -08:00
parent de47c960d3
commit a28edba4e9
91 changed files with 284 additions and 275 deletions

View File

@@ -45,7 +45,7 @@ DESCRIPTION
"round" sets rounding mode for round and bround
"outround" sets rounding mode for printing of numbers
"leadzero" enables/disables printing of 0 as in 0.5
"fullzero" enables/disables padding zeros as in .5000
"fullzero" enables/disables padding zeros as in 0.5000
"maxscan" maximum number of scan errors before abort
"prompt" default interactive prompt
"more" default interactive multi-line input prompt
@@ -883,7 +883,6 @@ DESCRIPTION
This config parameter is read-only and cannot be set.
EXAMPLE
; current_cfg = config("all");
; config("tilde", off),;
@@ -962,7 +961,8 @@ EXAMPLE
*/
; config("tilde", 1),;
; /* NOTE: display has too few digits and epsilon is not small enough */
; ## NOTE: display has too few digits and epsilon is not small enough
; config("display", 12),; /* or display(12),; */
; printf("%f\n", pi(1e-10));
3.1415926536
@@ -970,7 +970,8 @@ EXAMPLE
; printf("%f\n", pi());
3.1415926536
; /* NOTE: display has too few digits yet epsilon is small enough */
; ## NOTE: display has too few digits yet epsilon is small enough
; config("display", 12),; /* or display(12),; */
; printf("%f\n", pi(1e-72));
~3.141592653590
@@ -978,7 +979,8 @@ EXAMPLE
; printf("%f\n", pi());
~3.141592653590
; /* NOTE: display has enough digits but epsilon is not small enough */
; ## NOTE: display has enough digits but epsilon is not small enough
; config("display", 72),; /* or display(72),; */
; printf("%f\n", pi(1e-10));
3.1415926536
@@ -986,7 +988,8 @@ EXAMPLE
; printf("%f\n", pi());
3.1415926536
/* NOTE: display has enough digits and epsilon is small enough */
; ## NOTE: display has enough digits and epsilon is small enough
; config("display", 72),; /* or display(72),; */
; printf("%f\n", pi(1e-72));
3.141592653589793238462643383279502884197169399375105820974944592307816406
@@ -998,7 +1001,7 @@ LIMITS
none
LINK LIBRARY
n/a
none
SEE ALSO
custom, custom_cal, display, epsilon, fprintf, printf, strprintf, usage