@@ -93,7 +93,7 @@ public ModuleVisitor getDelegate() {
9393 }
9494
9595 /**
96- * Visit the main class of the current module.
96+ * Visits the main class of the current module.
9797 *
9898 * @param mainClass the internal name of the main class of the current module (see {@link
9999 * Type#getInternalName()}).
@@ -105,7 +105,7 @@ public void visitMainClass(final String mainClass) {
105105 }
106106
107107 /**
108- * Visit a package of the current module.
108+ * Visits a package of the current module.
109109 *
110110 * @param packaze the internal name of a package (see {@link Type#getInternalName()}).
111111 */
@@ -130,7 +130,7 @@ public void visitRequire(final String module, final int access, final String ver
130130 }
131131
132132 /**
133- * Visit an exported package of the current module.
133+ * Visits an exported package of the current module.
134134 *
135135 * @param packaze the internal name of the exported package (see {@link Type#getInternalName()}).
136136 * @param access the access flag of the exported package, valid values are among {@code
@@ -145,7 +145,7 @@ public void visitExport(final String packaze, final int access, final String...
145145 }
146146
147147 /**
148- * Visit an open package of the current module.
148+ * Visits an open package of the current module.
149149 *
150150 * @param packaze the internal name of the opened package (see {@link Type#getInternalName()}).
151151 * @param access the access flag of the opened package, valid values are among {@code
@@ -160,7 +160,7 @@ public void visitOpen(final String packaze, final int access, final String... mo
160160 }
161161
162162 /**
163- * Visit a service used by the current module. The name must be the internal name of an interface
163+ * Visits a service used by the current module. The name must be the internal name of an interface
164164 * or a class.
165165 *
166166 * @param service the internal name of the service (see {@link Type#getInternalName()}).
@@ -172,7 +172,7 @@ public void visitUse(final String service) {
172172 }
173173
174174 /**
175- * Visit an implementation of a service.
175+ * Visits an implementation of a service.
176176 *
177177 * @param service the internal name of the service (see {@link Type#getInternalName()}).
178178 * @param providers the internal names (see {@link Type#getInternalName()}) of the implementations
0 commit comments