diff --git a/src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java b/src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java
index 61425b8..3050768 100644
--- a/src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java
+++ b/src/main/java/com/sciencesakura/codenarc/maven/CheckMojo.java
@@ -29,14 +29,14 @@ public class CheckMojo extends AbstractMojo {
/**
* Specifies the source directories to analyze.
- * The plugin adds {@code ${project.basedir}/src/main/groovy} to this list if it exists and is not yet included.
+ * The plugin adds ${project.basedir}/src/main/groovy} to this list if it exists and is not yet included.
*/
@Parameter(defaultValue = "${project.compileSourceRoots}", required = true)
private List sourceDirectories;
/**
* Specifies the test source directories to analyze.
- * The plugin adds {@code ${project.basedir}/src/test/groovy} to this list if it exists and is not yet included.
+ * The plugin adds ${project.basedir}/src/test/groovy} to this list if it exists and is not yet included.
* This parameter is used only if {@link #includeTests} is set to {@code true}.
*/
@Parameter(defaultValue = "${project.testCompileSourceRoots}")