fix help-lint failures

db4
Joe Groff 2009-10-28 14:05:23 -05:00
parent ef25935366
commit b0362f8011
2 changed files with 4 additions and 4 deletions

View File

@ -75,11 +75,11 @@ $nl
{ $example
"""USING: locals urls xml.syntax xml.writer ;
[let
3 :> number [ 3 ]
f :> false [ f ]
3 :> number
f :> false
URL" http://factorcode.org/" :> url
"hello" :> string
\\ drop :> world
\\ drop :> word
<XML
<x
number=<-number->

View File

@ -61,7 +61,7 @@ $nl
$nl
"You can access " { $vocab-link "sequences" } " inside infix expressions with the familiar " { $snippet "arr[index]" } " notation."
{ $example
"USING: arrays infix ;"
"USING: arrays locals infix ;"
"[let { 1 2 3 4 } :> myarr [infix myarr[4/2]*3 infix] ] ."
"9"
}