]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-15544 fix minimumToken capitalization (#6320)
authorcynthiabethea <108268296+cynthiabethea@users.noreply.github.com>
Mon, 25 Jul 2022 12:04:18 +0000 (13:04 +0100)
committersonartech <sonartech@sonarsource.com>
Mon, 25 Jul 2022 20:03:58 +0000 (20:03 +0000)
server/sonar-docs/src/pages/analysis/analysis-parameters.md

index ea8ada49fdefffe611e41f656e68abd7f81fe783..7e1301b1e08bce0e4e145b882c01ee07c7309dda 100644 (file)
@@ -38,8 +38,8 @@ Key | Description | Default
 ### Project Identity
 Key | Description | Default
 ---|----|---
-`sonar.projectName`|Name of the project that will be displayed on the web interface.|`<name>` for Maven projects, otherwise project key. If not provided and there is already a name in the DB, it won't be overwritten
-`sonar.projectVersion` | The project version. | `<version>` for Maven projects, otherwise "not provided"
+`sonar.projectName`|Name of the project that will be displayed on the web interface.|`<name>` for Maven projects, otherwise project key. If not provided and there is already a name in the DB, it won't be overwritten.
+`sonar.projectVersion` | The project version. | `<version>` for Maven projects, otherwise "not provided".
 
 ### Authentication
 By default, user authentication is required to prevent anonymous users from browsing and analyzing projects on your instance, and you need to pass these parameters when running analyses. Authentication is enforced in the global Security(/instance-administration/security/) settings.
@@ -82,7 +82,7 @@ Key | Description | Default
 ### Duplications
 Key | Description | Default
 ---|----|---
-`sonar.cpd.${language}.minimumtokens` | A piece of code is considered duplicated as soon as there are at least 100 duplicated tokens in a row (override with `sonar.cpd.${language}.minimumTokens`) spread across at least 10 lines of code (override with `sonar.cpd.${language}.minimumLines`). For Java projects, a piece of code is considered duplicated when there is a series of at least 10 statements in a row, regardless of the number of tokens and lines. This threshold cannot be overridden.  | 100
+`sonar.cpd.${language}.minimumTokens` | A piece of code is considered duplicated as soon as there are at least 100 duplicated tokens in a row (override with `sonar.cpd.${language}.minimumTokens`) spread across at least 10 lines of code (override with `sonar.cpd.${language}.minimumLines`). For Java projects, a piece of code is considered duplicated when there is a series of at least 10 statements in a row, regardless of the number of tokens and lines. This threshold cannot be overridden.  | 100
 `sonar.cpd.${language}.minimumLines` | (see above) | 10