summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2021-04-13 03:10:17 -0500
committerptmcg <ptmcg@austin.rr.com>2021-04-13 03:10:17 -0500
commitb5b1fdd1c0a3dfffbbad206e885d59e6015015a8 (patch)
tree9eb783fbb075d959ab31ba8e90c048c828a32395 /examples
parent9e8ad930fefc3611e4c70ba612af7fd6b974fb85 (diff)
downloadpyparsing-git-b5b1fdd1c0a3dfffbbad206e885d59e6015015a8.tar.gz
#261 - fix table name in sql2dot.py example
Diffstat (limited to 'examples')
-rw-r--r--examples/sql2dot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sql2dot.py b/examples/sql2dot.py
index ca22ed8..73db323 100644
--- a/examples/sql2dot.py
+++ b/examples/sql2dot.py
@@ -8,7 +8,7 @@
# Adapted from a post at https://energyblog.blogspot.com/2006/04/blog-post_20.html.
#
sampleSQL = """
-create table student
+create table students
(
student_id integer primary key,
firstname varchar(20),