Skip to content

Commit

Permalink
Adjustment to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Techworker committed Feb 19, 2014
1 parent 1c8481b commit 5580873
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/component/Lexer.markdown
Expand Up @@ -100,7 +100,7 @@ class FileLexer extends PhpParser\Lexer {
// we could use either $startAttributes or $endAttributes here, because the fileName is always the same
// (regardless of whether it is the start or end token). We choose $endAttributes, because it is slightly
// more efficient (as the parser has to keep a stack for the $startAttributes).
$endAttributes['fileName'] = $fileName;
$endAttributes['fileName'] = $this->fileName;

return $tokenId;
}
Expand All @@ -111,4 +111,4 @@ handleHaltCompiler
------------------

The method is invoked whenever a `T_HALT_COMPILER` token is encountered. It has to return the remaining string after the
construct (not including `();`).
construct (not including `();`).

0 comments on commit 5580873

Please sign in to comment.