diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-01 05:34:03 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-01 05:34:03 +0800 |
commit | a46b3479bb0ccba26566eecd1824450ab4cadf1d (patch) | |
tree | 0eb45d245297471ab1de7fe82fc5d7eebc30064b /docs | |
parent | c5947ae6e314fc66612846a760bafe4467414c6b (diff) | |
download | dexon-solidity-a46b3479bb0ccba26566eecd1824450ab4cadf1d.tar.gz dexon-solidity-a46b3479bb0ccba26566eecd1824450ab4cadf1d.tar.zst dexon-solidity-a46b3479bb0ccba26566eecd1824450ab4cadf1d.zip |
Remove parsing of why3 doc strings
Diffstat (limited to 'docs')
-rw-r--r-- | docs/utils/SolidityLexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/utils/SolidityLexer.py b/docs/utils/SolidityLexer.py index 1dc99159..ef55c6a2 100644 --- a/docs/utils/SolidityLexer.py +++ b/docs/utils/SolidityLexer.py @@ -26,7 +26,7 @@ class SolidityLexer(RegexLexer): (r'/\*.*?\*/', Comment.Multiline) ], 'natspec': [ - (r'@author|@dev|@notice|@return|@param|@why3|@title', Keyword), + (r'@author|@dev|@notice|@return|@param|@title', Keyword), (r'.[^@*\n]*?', Comment.Special) ], 'docstringsingle': [ |