summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2015-01-15 09:49:06 -0600
committerDavid Beazley <dave@dabeaz.com>2015-01-15 09:49:06 -0600
commit57c670497a275ca4e03f7d3b3a9f1e2d963d862f (patch)
treeed74219f0ff1a2c37278446524f225016a2eb8f9
parent6513f3537d80f483ec9c7e36d52e87f107a57f23 (diff)
downloadply-57c670497a275ca4e03f7d3b3a9f1e2d963d862f.tar.gz
Fixed doc typo
-rw-r--r--doc/ply.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ply.html b/doc/ply.html
index c223d49..9796e61 100644
--- a/doc/ply.html
+++ b/doc/ply.html
@@ -354,7 +354,7 @@ accessing these attributes:
while True:
tok = lexer.token()
if not tok: break # No more input
- print tok.type, tok.value, tok.line, tok.lexpos
+ print tok.type, tok.value, tok.lineno, tok.lexpos
</pre>
</blockquote>