diff options
author | Andrew Dryga <[email protected]> | 2017-02-12 19:49:48 +0200 |
---|---|---|
committer | Andrew Dryga <[email protected]> | 2017-02-14 11:32:54 +0200 |
commit | 187d8ccccc6ec414cce9197d8e64bfe55d4b229e (patch) | |
tree | 82792d09e293b9a8713f693091fe06313451c050 /lib | |
parent | 4f43640032c3164cea09279044ee9a28a5ec02cb (diff) | |
download | otp-187d8ccccc6ec414cce9197d8e64bfe55d4b229e.tar.gz otp-187d8ccccc6ec414cce9197d8e64bfe55d4b229e.tar.bz2 otp-187d8ccccc6ec414cce9197d8e64bfe55d4b229e.zip |
Fixed typos in lib/parsetools
Diffstat (limited to 'lib')
-rw-r--r-- | lib/parsetools/src/leex.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parsetools/src/leex.erl b/lib/parsetools/src/leex.erl index 602e47404d..e0f37ae9df 100644 --- a/lib/parsetools/src/leex.erl +++ b/lib/parsetools/src/leex.erl @@ -1264,7 +1264,7 @@ pack_dfa([], _, Rs, PDFA) -> {PDFA,Rs}. %% {Action, AcceptLength, CurrTokLen, RestChars, Line, State}. %% The return CurrTokLen is always the current number of characters -%% scanned in the current token. The returns have the follwoing +%% scanned in the current token. The returns have the following %% meanings: %% {Action, AcceptLength, RestChars, Line} - %% The scanner has reached an accepting end-state, for example after @@ -1281,7 +1281,7 @@ pack_dfa([], _, Rs, PDFA) -> {PDFA,Rs}. %% %% {reject, AcceptLength, CurrTokLen, RestChars, Line, State} - %% {Action, AcceptLength, CurrTokLen, RestChars, Line, State} - -%% The scanner has reached a non-accepting transistion state. If +%% The scanner has reached a non-accepting transition state. If %% RestChars == [] we need to get more characters to continue. %% Otherwise if 'reject' then no accepting state has been reached it %% is an error. If we have an Action and AcceptLength then these are |