fix typos in StrBuilder javadoc

This commit is contained in:
pascalschumacher 2016-10-28 18:46:58 +02:00
parent 1f73bbeb67
commit 1e5c2b8779
1 changed files with 2 additions and 2 deletions

View File

@ -1197,7 +1197,7 @@ public class StrBuilder implements CharSequence, Appendable, Serializable, Build
}
/**
* Appends each item in a iterable to the builder without any separators.
* Appends each item in an iterable to the builder without any separators.
* Appending a null iterable will have no effect.
* Each object is appended using {@link #append(Object)}.
*
@ -1256,7 +1256,7 @@ public class StrBuilder implements CharSequence, Appendable, Serializable, Build
}
/**
* Appends a iterable placing separators between each value, but
* Appends an iterable placing separators between each value, but
* not before the first or after the last.
* Appending a null iterable will have no effect.
* Each object is appended using {@link #append(Object)}.