Skip to content

Commit

Permalink
Fixed documentation for check goal (#38)
Browse files Browse the repository at this point in the history
Was using previous name of `lint`.
  • Loading branch information
freemanjp authored May 24, 2018
1 parent 717806a commit c2c7d48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/site/apt/usage.apt.vm
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Usage
<version>${project.version}</version>
<executions>
<execution>
<id>format-and-lint</id>
<id>format-and-check</id>
<goals>
<goal>format</goal>
<goal>check</goal>
Expand Down Expand Up @@ -111,9 +111,9 @@ mvn ${project.groupId}:${project.artifactId}:${project.version}:format
<version>${project.version}</version>
<executions>
<execution>
<id>lint</id>
<id>check</id>
<goals>
<goal>lint</goal>
<goal>check</goal>
</goals>
</execution>
</executions>
Expand All @@ -127,7 +127,7 @@ mvn ${project.groupId}:${project.artifactId}:${project.version}:format
can run the following from your console:

+----------+
mvn ${project.groupId}:${project.artifactId}:${project.version}:lint
mvn ${project.groupId}:${project.artifactId}:${project.version}:check
+----------+

* Generate ktlint report as part of the project reports
Expand Down

0 comments on commit c2c7d48

Please sign in to comment.