aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-docs/src
diff options
context:
space:
mode:
authorcynthiabethea <108268296+cynthiabethea@users.noreply.github.com>2022-07-25 13:04:18 +0100
committersonartech <sonartech@sonarsource.com>2022-07-25 20:03:58 +0000
commit37035b92d1aef9ea3f476c8c24a6cbf4dcd04ddc (patch)
tree5c8f0a0110c48d3c7ba5c6d88cacd315d55563c8 /server/sonar-docs/src
parent4b374e5e61b038d97fdc1f88154b1844be871a36 (diff)
downloadsonarqube-37035b92d1aef9ea3f476c8c24a6cbf4dcd04ddc.tar.gz
sonarqube-37035b92d1aef9ea3f476c8c24a6cbf4dcd04ddc.zip
SONAR-15544 fix minimumToken capitalization (#6320)
Diffstat (limited to 'server/sonar-docs/src')
-rw-r--r--server/sonar-docs/src/pages/analysis/analysis-parameters.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-docs/src/pages/analysis/analysis-parameters.md b/server/sonar-docs/src/pages/analysis/analysis-parameters.md
index ea8ada49fde..7e1301b1e08 100644
--- a/server/sonar-docs/src/pages/analysis/analysis-parameters.md
+++ b/server/sonar-docs/src/pages/analysis/analysis-parameters.md
@@ -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