Skip to content

Commit 85f9052

Browse files
committed
Javadoc
1 parent 33a4da4 commit 85f9052

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/main/java/org/apache/commons/lang3/AppendableJoiner.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public AppendableJoiner<T> get() {
121121
* Sets the delimiter that separates each element.
122122
*
123123
* @param delimiter The delimiter that separates each element.
124-
* @return this instance.
124+
* @return {@code this} instance.
125125
*/
126126
public Builder<T> setDelimiter(final CharSequence delimiter) {
127127
this.delimiter = delimiter;
@@ -132,7 +132,7 @@ public Builder<T> setDelimiter(final CharSequence delimiter) {
132132
* Sets the consumer used to render each element of type {@code T} onto an {@link Appendable}.
133133
*
134134
* @param appender The consumer used to render each element of type {@code T} onto an {@link Appendable}.
135-
* @return this instance.
135+
* @return {@code this} instance.
136136
*/
137137
public Builder<T> setElementAppender(final FailableBiConsumer<Appendable, T, IOException> appender) {
138138
this.appender = appender;
@@ -143,7 +143,7 @@ public Builder<T> setElementAppender(final FailableBiConsumer<Appendable, T, IOE
143143
* Sets the sequence of characters to be used at the beginning.
144144
*
145145
* @param prefix The sequence of characters to be used at the beginning.
146-
* @return this instance.
146+
* @return {@code this} instance.
147147
*/
148148
public Builder<T> setPrefix(final CharSequence prefix) {
149149
this.prefix = prefix;
@@ -154,7 +154,7 @@ public Builder<T> setPrefix(final CharSequence prefix) {
154154
* Sets the sequence of characters to be used at the end.
155155
*
156156
* @param suffix The sequence of characters to be used at the end.
157-
* @return this instance.
157+
* @return {@code this} instance.
158158
*/
159159
public Builder<T> setSuffix(final CharSequence suffix) {
160160
this.suffix = suffix;

src/main/java/org/apache/commons/lang3/Strings.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public Strings get() {
6565
* Sets the ignoreCase property for new Strings instances.
6666
*
6767
* @param ignoreCase the ignoreCase property for new Strings instances.
68-
* @return this instance.
68+
* @return {@code this} instance.
6969
*/
7070
public Builder setIgnoreCase(final boolean ignoreCase) {
7171
this.ignoreCase = ignoreCase;
@@ -76,7 +76,7 @@ public Builder setIgnoreCase(final boolean ignoreCase) {
7676
* Sets the nullIsLess property for new Strings instances.
7777
*
7878
* @param nullIsLess the nullIsLess property for new Strings instances.
79-
* @return this instance.
79+
* @return {@code this} instance.
8080
*/
8181
public Builder setNullIsLess(final boolean nullIsLess) {
8282
this.nullIsLess = nullIsLess;

src/main/java/org/apache/commons/lang3/builder/AbstractSupplier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public AbstractSupplier() {
4545
* (B) this
4646
* </pre>
4747
*
48-
* @return this instance typed as the subclass type {@code B}.
48+
* @return {@code this} instance typed as the subclass type {@code B}.
4949
*/
5050
@SuppressWarnings("unchecked")
5151
protected B asThis() {

0 commit comments

Comments
 (0)