Formatting documentation.

This commit is contained in:
Jonathan Bernard 2012-10-22 20:22:10 -05:00
parent e5cd57414e
commit 928c1ebe3b

View File

@ -513,8 +513,8 @@ public class JLPPegParser extends BaseParser<Object> implements JLPParser {
/// ### Utility/Helper Functions. ### /// ### Utility/Helper Functions. ###
/// --------------------------------- /// ---------------------------------
/// The `popAs` functions exist primarily to make the parser rules more readable /// The `popAs` functions exist primarily to make the parser rules more
/// by providing shortcuts for common casts. /// readable by providing shortcuts for common casts.
String popAsString() { return (String) pop(); } String popAsString() { return (String) pop(); }
Integer popAsInt() { return (Integer) pop(); } Integer popAsInt() { return (Integer) pop(); }
@ -524,8 +524,8 @@ public class JLPPegParser extends BaseParser<Object> implements JLPParser {
/** /**
* #### addToDocBlock * #### addToDocBlock
* Add the given block to the [`SourceFile`] node expected to be at the top of * Add the given block to the [`SourceFile`] node expected to be at the top
* the parser value stack. * of the parser value stack.
* *
* [`SourceFile`]: jlp://jlp.jdb-labs.com/ast/SourceFile * [`SourceFile`]: jlp://jlp.jdb-labs.com/ast/SourceFile
*/ */
@ -535,8 +535,8 @@ public class JLPPegParser extends BaseParser<Object> implements JLPParser {
/** /**
* #### addToDocBlock * #### addToDocBlock
* Add the given [`Directive`] or [`DocText`] to the [`DocBlock`] expected to be at the * Add the given [`Directive`] or [`DocText`] to the [`DocBlock`] expected
* top of the parser value stack. * to be at the top of the parser value stack.
* *
* [`Directive`]: jlp://jlp.jdb-labs.com/ast/Directive * [`Directive`]: jlp://jlp.jdb-labs.com/ast/Directive
* [`DocText`]: jlp://jlp.jdb-labs.com/ast/DocText * [`DocText`]: jlp://jlp.jdb-labs.com/ast/DocText