diff options
author | Fred Drake <fdrake@acm.org> | 2002-03-16 06:35:01 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-03-16 06:35:01 (GMT) |
commit | 36e2586f72c9f0db6eb3880812e0c1fd44d9707f (patch) | |
tree | b784bfd4d511209407750919505856c920bcdd7c | |
parent | 4170544859e29b3a0fe9266d7809d4d7c25eae1a (diff) | |
download | cpython-36e2586f72c9f0db6eb3880812e0c1fd44d9707f.zip cpython-36e2586f72c9f0db6eb3880812e0c1fd44d9707f.tar.gz cpython-36e2586f72c9f0db6eb3880812e0c1fd44d9707f.tar.bz2 |
Markup error: braces not properly marked in dictionary display
grammer productions.
Fixes SF bug #520959.
-rw-r--r-- | Doc/ref/ref5.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index 6005f51..8101cb9 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -211,7 +211,7 @@ enclosed in curly braces: \begin{productionlist} \production{dict_display} - {"{" [\token{key_datum_list}] "}"} + {"\{" [\token{key_datum_list}] "\}"} \production{key_datum_list} {\token{key_datum} ("," \token{key_datum})* [","]} \production{key_datum} |