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
"Not-a-number equality:"
{ $example
"USING: math prettyprint ;"
"USING: kernel math prettyprint ;"
"0.0 0.0 / dup number= ."
"f"
}
{ $example
"USING: math prettyprint ;"
"USING: kernel math prettyprint ;"
"0.0 0.0 / dup fp-bitwise= ."
"t"
}
@ -299,7 +299,7 @@ HELP: fp-bitwise=
}
{ $example
"USING: math prettyprint ;"
"-0.0 0.0 = ."
"-0.0 0.0 number= ."
"t"
}
} ;

View File

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