diff options
author | Adam Johnson <me@adamj.eu> | 2020-03-22 16:17:19 +0000 |
---|---|---|
committer | Adam Johnson <me@adamj.eu> | 2020-03-22 16:17:19 +0000 |
commit | e4fcdad9ef036787e704b9c49a6f1a8ce88c1eec (patch) | |
tree | b6061a75656b160eb397c1cc709b3aa179b8b90f /pygments/lexers/diff.py | |
parent | 1a17a66e2b05ee7ab9ddc90c097f8aa1db988bca (diff) | |
download | pygments-git-e4fcdad9ef036787e704b9c49a6f1a8ce88c1eec.tar.gz |
Improve some lexer docstrings
Diffstat (limited to 'pygments/lexers/diff.py')
-rw-r--r-- | pygments/lexers/diff.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/diff.py b/pygments/lexers/diff.py index 5ff8375c..bdb6d77b 100644 --- a/pygments/lexers/diff.py +++ b/pygments/lexers/diff.py @@ -114,9 +114,9 @@ class WDiffLexer(RegexLexer): Note that: - * only to normal output (without option like -l). - * if target files of wdiff contain "[-", "-]", "{+", "+}", - especially they are unbalanced, this lexer will get confusing. + * It only works with normal output (without options like ``-l``). + * If the target files contain "[-", "-]", "{+", or "+}", + especially they are unbalanced, the lexer will get confused. .. versionadded:: 2.2 """ |