@@ -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 ;
0 commit comments