math, syntax: fix help lint

db4
Slava Pestov 2009-09-12 21:07:31 -04:00
parent 9ccf5811b3
commit 018677319c
2 changed files with 5 additions and 5 deletions

View File

@ -282,12 +282,12 @@ HELP: fp-bitwise=
{ $examples { $examples
"Not-a-number equality:" "Not-a-number equality:"
{ $example { $example
"USING: math prettyprint ;" "USING: kernel math prettyprint ;"
"0.0 0.0 / dup number= ." "0.0 0.0 / dup number= ."
"f" "f"
} }
{ $example { $example
"USING: math prettyprint ;" "USING: kernel math prettyprint ;"
"0.0 0.0 / dup fp-bitwise= ." "0.0 0.0 / dup fp-bitwise= ."
"t" "t"
} }
@ -299,7 +299,7 @@ HELP: fp-bitwise=
} }
{ $example { $example
"USING: math prettyprint ;" "USING: math prettyprint ;"
"-0.0 0.0 = ." "-0.0 0.0 number= ."
"t" "t"
} }
} ; } ;

View File

@ -612,8 +612,8 @@ HELP: NAN:
{ $examples { $examples
{ $example { $example
"USE: prettyprint" "USE: prettyprint"
"NAN: deadbeef ." "NAN: 80000deadbeef ."
"NAN: deadbeef" "NAN: 80000deadbeef"
} }
} ; } ;