io.pathnames: enclose a few example outputs in double quote characters

db4
Keita Haga 2011-01-14 20:07:10 +09:00
parent 5efbf43690
commit ac67370e15
1 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ HELP: append-path
{ $examples
{ $unchecked-example """USING: io.pathnames prettyprint ;
"first" "second.txt" append-path ."""
"first/second.txt"
"\"first/second.txt\""
}
} ;
@ -61,7 +61,7 @@ HELP: prepend-path
{ $examples
{ $unchecked-example """USING: io.pathnames prettyprint ;
"second.txt" "first" prepend-path ."""
"first/second.txt"
"\"first/second.txt\""
}
} ;
@ -124,7 +124,7 @@ HELP: home
{ $examples
{ $unchecked-example "USING: io.pathnames prettyprint ;"
"home ."
"/home/factor-user"
"\"/home/factor-user\""
}
} ;