diff options
author | brian d foy <bdfoy@cpan.org> | 2010-04-11 14:15:27 +0200 |
---|---|---|
committer | brian d foy <bdfoy@cpan.org> | 2010-04-11 14:15:27 +0200 |
commit | 675ac12c19e6fe00eff6e604a7d637bf621997ef (patch) | |
tree | 39f7945b216b3b9b9b5483ba46ccdd7c09a0e211 /toke.c | |
parent | 431be7b35e7448c1ced59444d6bdcfa11c5f83c7 (diff) | |
download | perl-675ac12c19e6fe00eff6e604a7d637bf621997ef.tar.gz |
* Fixed typo in toke.c docs, identified by Zefram
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1124,7 +1124,7 @@ it is not permitted to discard text that has yet to be lexed. Normally it is not necessarily to do this directly, because it suffices to use the implicit discarding behaviour of L</lex_next_chunk> and things based on it. However, if a token stretches across multiple lines, -and the lexing code has kept multiple lines of text in the buffer fof +and the lexing code has kept multiple lines of text in the buffer for that purpose, then after completion of the token it would be wise to explicitly discard the now-unneeded earlier lines, to avoid future multi-line tokens growing the buffer without bound. |