Skip to content

Commit

Permalink
fix parle stub ERROR_UNKNOWN_TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
lublak authored and isfedorov committed Jun 18, 2021
1 parent 5b46acd commit 938a205
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Parle/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Parser
public const ACTION_ACCEPT = 4;
public const ERROR_SYNTAX = 0;
public const ERROR_NON_ASSOCIATIVE = 1;
public const ERROR_UNKOWN_TOKEN = 2;
public const ERROR_UNKNOWN_TOKEN = 2;

/* Properties */
/**
Expand Down
2 changes: 1 addition & 1 deletion Parle/RParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class RParser
public const ACTION_ACCEPT = 4;
public const ERROR_SYNTAX = 0;
public const ERROR_NON_ASSOCIATIVE = 1;
public const ERROR_UNKOWN_TOKEN = 2;
public const ERROR_UNKNOWN_TOKEN = 2;

/* Properties */
/**
Expand Down

0 comments on commit 938a205

Please sign in to comment.