From 34a9b934581c71682ba645dcdc2a3f7336259a24 Mon Sep 17 00:00:00 2001 From: Keita Haga Date: Sun, 19 Dec 2010 01:07:34 +0900 Subject: [PATCH] syntax: slightly to fix examples of QUALIFIED: and QUALIFIED-WITH: --- core/syntax/syntax-docs.factor | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/syntax/syntax-docs.factor b/core/syntax/syntax-docs.factor index 512e2de61a..059fa487bc 100644 --- a/core/syntax/syntax-docs.factor +++ b/core/syntax/syntax-docs.factor @@ -533,13 +533,14 @@ HELP: QUALIFIED: { $examples { $example "USING: prettyprint ;" "QUALIFIED: math" - "1 2 math:+ ." "3" + "1 2 math:+ ." + "3" } } ; HELP: QUALIFIED-WITH: { $syntax "QUALIFIED-WITH: vocab word-prefix" } { $description "Like " { $link POSTPONE: QUALIFIED: } " but uses " { $snippet "word-prefix" } " as prefix." } -{ $examples { $code +{ $examples { $example "USING: prettyprint ;" "QUALIFIED-WITH: math m" "1 2 m:+ ."