From 0048670ad787b7b745b837de9c4d2ef9f6399fa0 Mon Sep 17 00:00:00 2001 From: Keita Haga Date: Sat, 15 Jan 2011 01:11:37 +0900 Subject: [PATCH] peg.ebnf: fix a couple of typos in docs --- basis/peg/ebnf/ebnf-docs.factor | 84 ++++++++++++++++----------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/basis/peg/ebnf/ebnf-docs.factor b/basis/peg/ebnf/ebnf-docs.factor index 6895a2bd7b..2ffc7e0b29 100644 --- a/basis/peg/ebnf/ebnf-docs.factor +++ b/basis/peg/ebnf/ebnf-docs.factor @@ -1,19 +1,19 @@ ! Copyright (C) 2009 Chris Double. ! See http://factorcode.org/license.txt for BSD license. USING: help.syntax help.markup peg peg.search ; -IN: peg.ebnf +IN: peg.ebnf HELP: " } { $values { "...ebnf..." "EBNF DSL text" } } -{ $description - "Creates a " { $vocab-link "peg" } +{ $description + "Creates a " { $vocab-link "peg" } " object that parses a string using the syntax " "defined with the EBNF DSL. The peg object can be run using the " { $link parse } " word and can be used with the " { $link search } " and " { $link replace } " words." } { $examples - { $example + { $example "USING: kernel prettyprint peg.ebnf peg.search ;" "\"abcdab\" [[ drop \"foo\" ]] EBNF> replace ." "\"foocdfoo\"" @@ -23,15 +23,15 @@ HELP: \" [EBNF rule=\"<\" (!(\">\") .)* \">\" EBNF] ." "V{ \"<\" V{ 97 98 99 100 } \">\" }" } -} +} ; - + ARTICLE: "peg.ebnf.action" "Action" "An action is a quotation that is run after a rule matches. The quotation " "consumes the AST of the rule match and leaves a new AST as the result. " "The stack effect of the action can be " { $snippet "( ast -- ast )" } " or " { $snippet "( -- ast )" } ". " -"If it is the latter then the original AST is implcitly dropped and will be " +"If it is the latter then the original AST is implicitly dropped and will be " "replaced by the AST left on the stack. This is mostly useful if variables are " "used in the rule since they can be referenced like locals in the action quotation. " "The action is defined by having a ' => ' at the end of a rule and " @@ -227,7 +227,7 @@ ARTICLE: "peg.ebnf.action" "Action" "If an action leaves the object 'ignore' on the stack then the result of that " "action will not be put in the AST of the result." { $examples - { $example + { $example "USING: prettyprint peg.ebnf strings ;" "\"\" [EBNF rule=\"<\" ((!(\">\") .)* => [[ >string ]]) \">\" EBNF] ." "V{ \"<\" \"abcd\" \">\" }" @@ -237,17 +237,17 @@ ARTICLE: "peg.ebnf.action" "Action" "\"123\" [EBNF rule=[0-9]+ => [[ string>number ]] EBNF] ." "123" } -} +} ; ARTICLE: "peg.ebnf.semantic-action" "Semantic Action" "Semantic actions allow providing a quotation that gets run on the AST of a " "matched rule that returns success or failure. The result of the parse is decided by " "the result of the semantic action. The stack effect for the quotation is " -{ $snippet ( ast -- ? ) } ". " +{ $snippet ( ast -- ? ) } ". " "A semantic action follows the rule it applies to and is delimeted by '?[' and ']?'." { $examples - { $example + { $example "USING: prettyprint peg.ebnf math math.parser ;" "\"1\" [EBNF rule=[0-9] ?[ digit> odd? ]? EBNF] ." "49" @@ -257,7 +257,7 @@ ARTICLE: "peg.ebnf.semantic-action" "Semantic Action" "\"2\" [EBNF rule=[0-9] ?[ digit> odd? ]? EBNF] ." "Sequence index out of bounds\nindex 0\nseq V{ }" } -} +} ; ARTICLE: "peg.ebnf.variable" "Variable" @@ -265,12 +265,12 @@ ARTICLE: "peg.ebnf.variable" "Variable" "followed by the variable name. These can then be used in rule actions to refer to " "the AST result of the rule element with that variable name." { $examples - { $example + { $example "USING: prettyprint peg.ebnf math.parser ;" "\"1+2\" [EBNF rule=[0-9]:a \"+\" [0-9]:b => [[ a digit> b digit> + ]] EBNF] ." "3" } -} +} ; ARTICLE: "peg.ebnf.foreign-rules" "Foreign Rules" @@ -283,7 +283,7 @@ ARTICLE: "peg.ebnf.foreign-rules" "Foreign Rules" { $vocab-link "peg" } " defined parser and it will be called to perform the parse " "for that rule." { $examples - { $code + { $code "USING: prettyprint peg.ebnf ;" "EBNF: parse-string" "StringBody = (!('\"') .)*" @@ -302,7 +302,7 @@ ARTICLE: "peg.ebnf.foreign-rules" "Foreign Rules" "abc = 'b' 'c'" ";EBNF" } -} +} ; ARTICLE: "peg.ebnf.tokenizers" "Tokenizers" @@ -441,7 +441,7 @@ ARTICLE: "peg.ebnf" "EBNF" POSTPONE: EBNF: } "The EBNF syntax is composed of a series of rules of the form: " -{ $code +{ $code "rule1 = ..." "rule2 = ..." } @@ -469,7 +469,7 @@ ARTICLE: "peg.ebnf" "EBNF" "own tokenizer that for an EBNF grammar, and write the grammar in terms of " "those tokens, allowing you to ignore the whitespace issue. The tokenizer " "can be changed at various parts in the grammar as needed. The JavaScript grammar " -"does this to define the optional semicolon rule for example." +"does this to define the optional semicolon rule for example." { $subsections "peg.ebnf.tokenizers" } ;