Fix typos in README

This commit is contained in:
Simon Brandhof 2019-06-10 09:53:46 +02:00 committed by GitHub
commit 2121a8656c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,15 +17,15 @@ Project metadata, including the location to the sources to be analyzed, must be
sonar.organization=<replace with your SonarCloud organization key> sonar.organization=<replace with your SonarCloud organization key>
sonar.projectKey=<replace with the key generated when setting up the project on SonarCloud> sonar.projectKey=<replace with the key generated when setting up the project on SonarCloud>
// relative paths to source directories. More details and properties are described # relative paths to source directories. More details and properties are described
// in https://sonarcloud.io/documentation/project-administration/narrowing-the-focus/ # in https://sonarcloud.io/documentation/project-administration/narrowing-the-focus/
sonar.sources=. sonar.sources=.
``` ```
The workflow, usually declared in `.github/main.workflow`, looks like: The workflow, usually declared in `.github/main.workflow`, looks like:
``` ```
workflow "Main Worflow" { workflow "Main Workflow" {
on = "push" on = "push"
resolves = "SonarCloud Trigger" resolves = "SonarCloud Trigger"
} }