Skip to content

Commit

Permalink
Changed comments in grammar classes and increased version number
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskonnertz committed Aug 15, 2017
1 parent 9c63c8f commit 8562a04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ChrisKonnertz/StringCalc/Grammar/AbstractGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/**
* This abstract class represents a grammar. It also is a container for the rules
* that define this grammar. You may use the constructor of a concrete StringCalcGrammar class
* that define this grammar. You may use the constructor of a concrete grammar class
* as a place to add concrete rules.
*
* @package ChrisKonnertz\StringCalc\Grammar
Expand Down
4 changes: 2 additions & 2 deletions src/ChrisKonnertz/StringCalc/Grammar/StringCalcGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
use ChrisKonnertz\StringCalc\Grammar\Expressions\SymbolExpression;

/**
* This class represents a grammar. It also is a container for the rules
* that define this grammar.
* This class represents the concrete grammar of StringCalc.
* It also is a container for the rules that define this grammar.
*
* @package ChrisKonnertz\StringCalc\Grammar
*/
Expand Down
2 changes: 1 addition & 1 deletion src/ChrisKonnertz/StringCalc/StringCalc.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class StringCalc
*
* @const string
*/
const VERSION = '1.0.4';
const VERSION = '1.0.5';

/**
* Closure that is called at the end of the grammar checking
Expand Down

0 comments on commit 8562a04

Please sign in to comment.