diff --git a/modules/ROOT/pages/munit-extensions-maven-plugin-configuration.adoc b/modules/ROOT/pages/munit-extensions-maven-plugin-configuration.adoc
index 96764193..67661fba 100644
--- a/modules/ROOT/pages/munit-extensions-maven-plugin-configuration.adoc
+++ b/modules/ROOT/pages/munit-extensions-maven-plugin-configuration.adoc
@@ -218,7 +218,7 @@ To run a specific test, add an `munitTest` property for each specific test to th
== Run Tests with Specific Tags
-To run tests with specific tags, add an `munitTags` property for the test with the specific tag to the configuration section of the MUnit Extensions Maven plugin. Separate the tags with commas:
+To run tests with specific tags, add an `munitTags` property for the tests with the specific tags to the configuration section of the MUnit Extensions Maven plugin. Separate the tags with commas, for example:
[source,xml,linenums]
----
@@ -228,7 +228,7 @@ To run tests with specific tags, add an `munitTags` property for the test with t
munit-extensions-maven-plugin
...
- exampleMunitTag,exampleMunitTag2
+ exampleMUnitTag,exampleMUnitTag2
...
@@ -256,7 +256,7 @@ To skip MUnit tests, add a `skipMunitTests` property to skip MUnit tests to the
== Skip Tests After One Suite Fails
-To skip the rest of the tests if one test suite fails, add a `skipAfterFailure` property to skip after failure to the configuration section of the MUnit Extensions Maven plugin:
+To skip the rest of the tests if one test suite fails, add a `skipAfterFailure` property to the configuration section of the MUnit Extensions Maven plugin:
[source,xml,linenums]
----
diff --git a/modules/ROOT/pages/munit-extensions-maven-plugin.adoc b/modules/ROOT/pages/munit-extensions-maven-plugin.adoc
index e7d378f3..af7fd363 100644
--- a/modules/ROOT/pages/munit-extensions-maven-plugin.adoc
+++ b/modules/ROOT/pages/munit-extensions-maven-plugin.adoc
@@ -23,7 +23,7 @@ You can instruct the MUnit Extensions Maven plugin to run tests that belong only
mvn clean verify -Dmunit.test=
----
-The `munit.test` property accepts regular, Java expressions applied to the name of the MUnit test suite file. The path is relative to `src/test/munit`.
+The `munit.test` property accepts regular Java expressions applied to the name of the MUnit test suite file. The path is relative to `src/test/munit`.
For example: