diff options
| author | Stefan Weil <sw@weilnetz.de> | 2014-01-20 07:46:22 +0100 | 
|---|---|---|
| committer | Stefan Weil <sw@weilnetz.de> | 2014-01-20 07:46:22 +0100 | 
| commit | 9a9886b0346e124dac362602d9d90a538bf0288c (patch) | |
| tree | bf6492f6d239dbaa8dc35a2d27b67536b4ef8122 /lexers/LexPerl.cxx | |
| parent | d77efc572d9ec0493ac7e4553249cd9da1482f82 (diff) | |
| download | scintilla-mirror-9a9886b0346e124dac362602d9d90a538bf0288c.tar.gz | |
Fix typos in comments (lexers)
Diffstat (limited to 'lexers/LexPerl.cxx')
| -rw-r--r-- | lexers/LexPerl.cxx | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lexers/LexPerl.cxx b/lexers/LexPerl.cxx index 5a7447af3..8fa516b34 100644 --- a/lexers/LexPerl.cxx +++ b/lexers/LexPerl.cxx @@ -662,7 +662,7 @@ void SCI_METHOD LexerPerl::Lex(unsigned int startPos, int length, int initStyle,  	} else if (initStyle == SCE_PL_POD  	        || initStyle == SCE_PL_POD_VERB  	          ) { -		// POD backtracking finds preceeding blank lines and goes back past them +		// POD backtracking finds preceding blank lines and goes back past them  		int ln = styler.GetLine(startPos);  		if (ln > 0) {  			initStyle = styler.StyleAt(styler.LineStart(--ln)); @@ -1159,12 +1159,12 @@ void SCI_METHOD LexerPerl::Lex(unsigned int startPos, int length, int initStyle,  					sc.ForwardSetState(SCE_PL_DEFAULT);  					HereDoc.State = 3;  				} else { -					// invalid indentifier; inexact fallback, but hey +					// invalid identifier; inexact fallback, but hey  					sc.ChangeState(SCE_PL_IDENTIFIER);  					sc.SetState(SCE_PL_DEFAULT);  				}  			} else { -				sc.ChangeState(SCE_PL_DEFAULT);	// invalid indentifier +				sc.ChangeState(SCE_PL_DEFAULT);	// invalid identifier  			}  			backFlag = BACK_NONE;  			break; | 
