diff options
author | Matthieu Moy <Matthieu.Moy@imag.fr> | 2015-04-20 14:09:06 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-04-20 11:05:50 -0700 |
commit | d349e0ee60e1bad1cf49245e402ca086ddb5ff80 (patch) | |
tree | b6efb7dfe74c7177beeb6623de202b3609e7f5ab /Documentation/gitk.txt | |
parent | 52735a689270bb1de94eb3de198594b36caed9bb (diff) | |
download | git-d349e0ee60e1bad1cf49245e402ca086ddb5ff80.tar.gz |
Documentation: change -L:<regex> to -L:<funcname>
The old wording was somehow implying that <start> and <end> were not
regular expressions. Also, the common case is to use a plain function
name here so <funcname> makes sense (the fact that it is a regular
expression is documented in line-range-format.txt).
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/gitk.txt')
-rw-r--r-- | Documentation/gitk.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/gitk.txt b/Documentation/gitk.txt index 7ae50aa26a..6ade002176 100644 --- a/Documentation/gitk.txt +++ b/Documentation/gitk.txt @@ -99,10 +99,10 @@ linkgit:git-rev-list[1] for a complete list. detailed explanation.) -L<start>,<end>:<file>:: --L:<regex>:<file>:: +-L:<funcname>:<file>:: Trace the evolution of the line range given by "<start>,<end>" - (or the funcname regex <regex>) within the <file>. You may + (or the function name regex <funcname>) within the <file>. You may not give any pathspec limiters. This is currently limited to a walk starting from a single revision, i.e., you may only give zero or one positive revision arguments. |