summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/javacc/SDParser.jj
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2020-09-30 20:53:44 +0200
committerGitHub <noreply@github.com>2020-09-30 20:53:44 +0200
commit2380e628089b24849b5d5b95189082b141815c68 (patch)
treef1281bed7c6faccf4e85366f264a47fceb8f3030 /config-model/src/main/javacc/SDParser.jj
parent849510dd107c770f4694a61f9af9c424b474fd23 (diff)
parentf54d8d82771457f7281f73bcc724180f9346c6f9 (diff)
Merge pull request #14648 from vespa-engine/bratseth/non-functional-changes
Non-functional changes only
Diffstat (limited to 'config-model/src/main/javacc/SDParser.jj')
-rw-r--r--config-model/src/main/javacc/SDParser.jj8
1 files changed, 4 insertions, 4 deletions
diff --git a/config-model/src/main/javacc/SDParser.jj b/config-model/src/main/javacc/SDParser.jj
index 3bbcf7979f3..869f671d8ef 100644
--- a/config-model/src/main/javacc/SDParser.jj
+++ b/config-model/src/main/javacc/SDParser.jj
@@ -2591,10 +2591,10 @@ String identifierWithDash() :
}
/**
- * This rule consumes an identifier. This must be kept in sync with all word tokens that should be parseable as
+ * Consumes an identifier. This must be kept in sync with all word tokens that should be parseable as
* identifiers.
*
- * @return The identifier string.
+ * @return the identifier string
*/
String identifier() : { }
{
@@ -2726,7 +2726,7 @@ String identifier() : { }
}
/**
- * This rule consumes a string token and returns the token image.
+ * Consumes a string token and returns the token image.
*
* @return The consumed token image.
*/
@@ -2736,7 +2736,7 @@ String string() : { }
}
/**
- * This rule consumes a quoted string token and returns the token image minus the quotes. This does not perform
+ * Consumes a quoted string token and returns the token image minus the quotes. This does not perform
* unescaping of the content, it simply removes the first and last character of the image. However, the token itself can
* contain anything but a double quote.
*