summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2015-01-16 15:28:01 -0600
committerDavid Beazley <dave@dabeaz.com>2015-01-16 15:28:01 -0600
commitc423682c8a45a631035a2a8e46c976768a0cecb0 (patch)
treecfb3df7faa014d584112e69ad5e9c85a103df209 /doc
parent57c670497a275ca4e03f7d3b3a9f1e2d963d862f (diff)
downloadply-c423682c8a45a631035a2a8e46c976768a0cecb0.tar.gz
Fixed flex link
Diffstat (limited to 'doc')
-rw-r--r--doc/ply.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ply.html b/doc/ply.html
index 9796e61..003384d 100644
--- a/doc/ply.html
+++ b/doc/ply.html
@@ -1178,7 +1178,7 @@ a series of different states. Each state can have its own tokens,
lexing rules, and so forth. The implementation is based largely on
the "start condition" feature of GNU flex. Details of this can be found
at <a
-href="http://www.gnu.org/software/flex/manual/html_chapter/flex_11.html">http://www.gnu.org/software/flex/manual/html_chapter/flex_11.html.</a>.
+href="http://flex.sourceforge.net/manual/Start-Conditions.html">http://flex.sourceforge.net/manual/Start-Conditions.html</a>.
<p>
To define a new lexing state, it must first be declared. This is done by including a "states" declaration in your