diff options
author | chriseth <chris@ethereum.org> | 2017-07-01 18:42:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-01 18:42:37 +0800 |
commit | 61e448470aa5dbb67d64742f0903c20678ca3101 (patch) | |
tree | 7775ccb3dffde453f3724e59c0d64c2185a8fb1d /docs | |
parent | 06f8949f1033e6dc90e9645fcb6a869ecaaf5887 (diff) | |
parent | a46b3479bb0ccba26566eecd1824450ab4cadf1d (diff) | |
download | dexon-solidity-61e448470aa5dbb67d64742f0903c20678ca3101.tar.gz dexon-solidity-61e448470aa5dbb67d64742f0903c20678ca3101.tar.zst dexon-solidity-61e448470aa5dbb67d64742f0903c20678ca3101.zip |
Merge pull request #2494 from ethereum/remove-why3
Remove last remains of Why3
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': [ |