From 18ecaa5c84d686241400d5d0f86d8315ca1ffa77 Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Fri, 6 Nov 2009 23:37:55 -0600 Subject: [PATCH] link to fry examples article from fry word docs --- basis/fry/fry-docs.factor | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/basis/fry/fry-docs.factor b/basis/fry/fry-docs.factor index 3401208858..b3d2ff296e 100644 --- a/basis/fry/fry-docs.factor +++ b/basis/fry/fry-docs.factor @@ -2,17 +2,20 @@ USING: help.markup help.syntax quotations kernel ; IN: fry HELP: _ -{ $description "Fry specifier. Inserts a literal value into the fried quotation." } ; +{ $description "Fry specifier. Inserts a literal value into the fried quotation." } +{ $examples "See " { $link "fry.examples" } "." } ; HELP: @ -{ $description "Fry specifier. Splices a quotation into the fried quotation." } ; +{ $description "Fry specifier. Splices a quotation into the fried quotation." } +{ $examples "See " { $link "fry.examples" } "." } ; HELP: fry { $values { "quot" quotation } { "quot'" quotation } } { $description "Outputs a quotation that when called, fries " { $snippet "quot" } " by taking values from the stack and substituting them in." } { $notes "This word is used to implement " { $link POSTPONE: '[ } "; the following two lines are equivalent:" { $code "[ X ] fry call" "'[ X ]" } -} ; +} +{ $examples "See " { $link "fry.examples" } "." } ; HELP: '[ { $syntax "'[ code... ]" }