diff options
author | Sebastian Schuberth <sschuberth@gmail.com> | 2019-03-15 15:26:05 +0100 |
---|---|---|
committer | Sebastian Schuberth <sschuberth@gmail.com> | 2019-03-18 09:51:37 +0100 |
commit | d9e1653825fdf6c96c748310fa9f61f53f8dcd19 (patch) | |
tree | 3ee225d4d6648615cd40ac8b1984baec62c1e820 /org.eclipse.jgit | |
parent | d9d9862402078c325870b64b8e3efc6e38671dbf (diff) | |
download | jgit-d9e1653825fdf6c96c748310fa9f61f53f8dcd19.tar.gz jgit-d9e1653825fdf6c96c748310fa9f61f53f8dcd19.zip |
DescribeCommand: Add a missing dots at the end of docs
Ensure the sentences to document fields consistenly end with a dot.
Change-Id: I084899cafe4dea6f2424132dce9f3adca2e20985
Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java index a484742e08..c7b2c35491 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java @@ -102,12 +102,12 @@ public class DescribeCommand extends GitCommand<String> { private boolean longDesc; /** - * Pattern matchers to be applied to tags under consideration + * Pattern matchers to be applied to tags under consideration. */ private List<IMatcher> matchers = new ArrayList<>(); /** - * Whether to use all tags (incl. lightweight) or not + * Whether to use all tags (incl. lightweight) or not. */ private boolean useTags = false; |