diff options
author | ptmcg <ptmcg@austin.rr.com> | 2022-02-15 00:28:29 -0600 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2022-02-15 00:28:29 -0600 |
commit | 1812d239f23e1504ec6734f1e59086693ee42d7c (patch) | |
tree | 8c7fed0cd5970954ca3fe8a309acfd58935bc5a7 /pyparsing/helpers.py | |
parent | 2206f2b8442add926d2061b1abd0a5007e59953e (diff) | |
download | pyparsing-git-1812d239f23e1504ec6734f1e59086693ee42d7c.tar.gz |
Clean up dump() examples in docstrings
Diffstat (limited to 'pyparsing/helpers.py')
-rw-r--r-- | pyparsing/helpers.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyparsing/helpers.py b/pyparsing/helpers.py index 5a16798..147f271 100644 --- a/pyparsing/helpers.py +++ b/pyparsing/helpers.py @@ -352,10 +352,10 @@ def dict_of(key: ParserElement, value: ParserElement) -> ParserElement: prints:: [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']] - - color: light blue - - posn: upper left - - shape: SQUARE - - texture: burlap + - color: 'light blue' + - posn: 'upper left' + - shape: 'SQUARE' + - texture: 'burlap' SQUARE SQUARE {'color': 'light blue', 'shape': 'SQUARE', 'posn': 'upper left', 'texture': 'burlap'} |