@@ -599,7 +599,7 @@ private String escapeValue(final String value) {
599599 }
600600
601601 /**
602- * Tries to find the index of the separator character in the given string. This method checks for the presence of
602+ * Finds the index of the separator character in the given string. This method checks for the presence of
603603 * separator characters in the given string. If multiple characters are found, the first one is assumed to be the
604604 * correct separator. If there are quoting characters, they are taken into account, too.
605605 *
@@ -729,7 +729,7 @@ private boolean isCommentChar(final char c) {
729729 }
730730
731731 /**
732- * Determine if the given line is a comment line.
732+ * Tests if the given line is a comment line.
733733 *
734734 * @param line The line to check.
735735 * @return true if the line is empty or starts with one of the comment characters
@@ -743,7 +743,7 @@ protected boolean isCommentLine(final String line) {
743743 }
744744
745745 /**
746- * Determine if the given line is a section.
746+ * Tests if the given line is a section.
747747 *
748748 * @param line The line to check.
749749 * @return true if the line contains a section
@@ -781,7 +781,7 @@ private boolean lineContinues(final String line, final int pos) {
781781 }
782782
783783 /**
784- * Parse the value to remove the quotes and ignoring the comment. Example:
784+ * Parses the value to remove the quotes and ignoring the comment. Example:
785785 *
786786 * <pre>
787787 * "value" ; comment -> value
@@ -868,7 +868,7 @@ private String parseValue(final String val, final BufferedReader reader) throws
868868 }
869869
870870 /**
871- * Load the configuration from the given reader. Note that the {@code clear()} method is not called so the configuration
871+ * Reads the configuration from the given reader. Note that the {@code clear()} method is not called so the configuration
872872 * read in will be merged with the current configuration.
873873 *
874874 * @param in the reader to read the configuration from.
@@ -887,7 +887,7 @@ public void read(final Reader in) throws ConfigurationException, IOException {
887887 }
888888
889889 /**
890- * Allows setting the leading comment separator which is used in reading an INI file
890+ * Sets the leading comment separator which is used in reading an INI file
891891 *
892892 * @param separator String of the new separator for INI reading
893893 * @since 2.5
@@ -902,7 +902,7 @@ public void setCommentLeadingCharsUsedInInput(final String separator) {
902902 }
903903
904904 /**
905- * Allows setting the key and value separator which is used in reading an INI file
905+ * Sets the key and value separator which is used in reading an INI file
906906 *
907907 * @param separator String of the new separator for INI reading
908908 * @since 2.5
@@ -917,7 +917,7 @@ public void setSeparatorUsedInInput(final String separator) {
917917 }
918918
919919 /**
920- * Allows setting the key and value separator which is used for the creation of the resulting INI output
920+ * Sets the key and value separator which is used for the creation of the resulting INI output
921921 *
922922 * @param separator String of the new separator for INI output
923923 * @since 2.2
@@ -927,7 +927,7 @@ public void setSeparatorUsedInOutput(final String separator) {
927927 }
928928
929929 /**
930- * Save the configuration to the specified writer.
930+ * Writes the configuration to the specified writer.
931931 *
932932 * @param writer The writer to save the configuration to.
933933 * @throws ConfigurationException If an error occurs while writing the configuration
0 commit comments