2727 * set().otherName(value);
2828 * </pre>
2929 * <p>
30- * If {@link S} is the same as {@link R}, {@link #with(String, Object)} will commit changes after the first value change
31- * and return a {@link R} from {@link #done()}.
30+ * If {@code S} is the same as {@code R}, {@link #with(String, Object)} will commit changes after the first value change
31+ * and return a {@code R} from {@link #done()}.
3232 * </p>
3333 * <p>
34- * If {@link S} is not the same as {@link R}, {@link #with(String, Object)} will batch together multiple changes and let
34+ * If {@code S} is not the same as {@code R}, {@link #with(String, Object)} will batch together multiple changes and let
3535 * the user call {@link #done()} when they are ready.
3636 *
3737 * @author Liam Newman
3838 * @param <R>
3939 * Final return type built by this builder returned when {@link #done()}} is called.
4040 * @param <S>
41- * Intermediate return type for this builder returned by calls to {@link #with(String, Object)}. If {@link S}
42- * the same as {@link R}, this builder will commit changes after each call to {@link #with(String, Object)}.
41+ * Intermediate return type for this builder returned by calls to {@link #with(String, Object)}. If {@code S}
42+ * the same as {@code R}, this builder will commit changes after each call to {@link #with(String, Object)}.
4343 */
4444abstract class AbstractBuilder <R , S > extends GitHubInteractiveObject implements GitHubRequestBuilderDone <R > {
4545
@@ -68,7 +68,7 @@ abstract class AbstractBuilder<R, S> extends GitHubInteractiveObject implements
6868 * @param finalReturnType
6969 * the final return type for built by this builder returned when {@link #done()}} is called.
7070 * @param intermediateReturnType
71- * the intermediate return type of type {@link S} returned by calls to {@link #with(String, Object)}.
71+ * the intermediate return type of type {@code S} returned by calls to {@link #with(String, Object)}.
7272 * Must either be equal to {@code builtReturnType} or this instance must be castable to this class. If
7373 * not, the constructor will throw {@link IllegalArgumentException}.
7474 * @param root
@@ -113,10 +113,10 @@ public R done() throws IOException {
113113 /**
114114 * Applies a value to a name for this builder.
115115 *
116- * If {@link S} is the same as {@link R}, this method will commit changes after the first value change and return a
117- * {@link R} from {@link #done()}.
116+ * If {@code S} is the same as {@code R}, this method will commit changes after the first value change and return a
117+ * {@code R} from {@link #done()}.
118118 *
119- * If {@link S} is not the same as {@link R}, this method will return an {@link S} and letting the caller batch
119+ * If {@code S} is not the same as {@code R}, this method will return an {@code S} and letting the caller batch
120120 * together multiple changes and call {@link #done()} when they are ready.
121121 *
122122 * @param name
@@ -137,10 +137,10 @@ protected S with(@Nonnull String name, Object value) throws IOException {
137137 /**
138138 * Chooses whether to return a continuing builder or an updated data record
139139 *
140- * If {@link S} is the same as {@link R}, this method will commit changes after the first value change and return a
141- * {@link R} from {@link #done()}.
140+ * If {@code S} is the same as {@code R}, this method will commit changes after the first value change and return a
141+ * {@code R} from {@link #done()}.
142142 *
143- * If {@link S} is not the same as {@link R}, this method will return an {@link S} and letting the caller batch
143+ * If {@code S} is not the same as {@code R}, this method will return an {@code S} and letting the caller batch
144144 * together multiple changes and call {@link #done()} when they are ready.
145145 *
146146 * @return either a continuing builder or an updated data record
0 commit comments