diff --git a/src/site/markdown/using-resolver-in-maven-plugins.md b/src/site/markdown/using-resolver-in-maven-plugins.md
index 7c2544648..a6eda28fe 100644
--- a/src/site/markdown/using-resolver-in-maven-plugins.md
+++ b/src/site/markdown/using-resolver-in-maven-plugins.md
@@ -36,14 +36,14 @@ POM:
org.apache.maven.resolver
maven-resolver-api
- 1.9.20
+ 1.9.22
provided
org.apache.maven.resolver
maven-resolver-util
- 1.9.20
+ 1.9.22
compile
@@ -58,7 +58,7 @@ enforced by the Maven core, just like other Maven APIs. So be sure to
compile/test your plugin against the version of `maven-resolver-api` that is
used by the minimum version of Maven that your plugin wants to support.
-Next, in your mojo source, you would need to grab the repository related
+Next, in your mojo source, you need to grab the repository related
components and parameters:
```java
@@ -71,7 +71,7 @@ public class MyMojo extends AbstractMojo
{
/**
- * The entry point to resolver (fka. Aether), i.e. the component doing all the work.
+ * The entry point to resolver (a.k.a. Aether), i.e. the component doing all the work.
*/
@Component
private RepositorySystem repoSystem;