assocs, math.bitwise: remove first blank line and useless whitespace in a few usage examples

db4
Keita Haga 2011-01-17 00:12:28 +09:00
parent 5cad80fdc9
commit 8d2ceda8f3
2 changed files with 15 additions and 15 deletions

View File

@ -57,7 +57,7 @@ HELP: bit-clear?
"HEX: ff 8 bit-clear? ."
"t"
}
{ $example "" "USING: math.bitwise prettyprint ;"
{ $example "USING: math.bitwise prettyprint ;"
"HEX: ff 7 bit-clear? ."
"f"
}

View File

@ -495,7 +495,7 @@ HELP: zip
{ "alist" "an array of key/value pairs" } }
{ $description "Combines two sequences pairwise into a single sequence of key/value pairs." }
{ $examples
{ $example "" "USING: prettyprint assocs ;"
{ $example "USING: prettyprint assocs ;"
"{ 1 2 3 } { 4 5 6 } zip ."
"{ { 1 4 } { 2 5 } { 3 6 } }"
}