From cb265fff52aa3130c7ee6fbbe0a6d957c2dacb50 Mon Sep 17 00:00:00 2001 From: edmoffo Date: Tue, 16 Jun 2026 00:19:23 +0000 Subject: [PATCH] docs(HomeNames): fix typos in javadoc comments --- src/main/groovy/org/eolang/lints/HomeNames.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/groovy/org/eolang/lints/HomeNames.groovy b/src/main/groovy/org/eolang/lints/HomeNames.groovy index f42c9aef3..59a4c7939 100644 --- a/src/main/groovy/org/eolang/lints/HomeNames.groovy +++ b/src/main/groovy/org/eolang/lints/HomeNames.groovy @@ -106,7 +106,7 @@ final class HomeNames { * objects is located. When `lints` used as a dependency, home repo is accessed from JAR, while, * in local tests, we use read as normal file on disk. * Both methods: {@link HomeNames#namesInJar} and {@link HomeNames#namesInFile} depend on - * the same directory, which we pass in the ctor, the only difference in the term of access - for + * the same directory, which we pass in the ctor, the only difference in terms of access - for * JAR we need to "mount" the file system using {@link FileSystem}. */ void placeCsv() { @@ -156,7 +156,7 @@ final class HomeNames { /** * Names in EO file. * @param path Path to EO file - * @return Map of names, the key is object name, the value us path + * @return Map of names, the key is object name, the value is path */ private static Map namesInFile(final Path path) { final XML parsed @@ -172,7 +172,7 @@ final class HomeNames { /** * Names in EO file from JAR. * @param path Path to EO file in JAR - * @return Map of names, the key is object name, the value us path + * @return Map of names, the key is object name, the value is path * @checkstyle IllegalCatchCheck (15 lines) */ @SuppressWarnings("PMD.AvoidCatchingGenericException")