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 { $example
"""USING: locals urls xml.syntax xml.writer ; """USING: locals urls xml.syntax xml.writer ;
[let [let
3 :> number [ 3 ] 3 :> number
f :> false [ f ] f :> false
URL" http://factorcode.org/" :> url URL" http://factorcode.org/" :> url
"hello" :> string "hello" :> string
\\ drop :> world \\ drop :> word
<XML <XML
<x <x
number=<-number-> number=<-number->

View File

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