diff --git a/src/main/java/org/kohsuke/github/AbstractBuilder.java b/src/main/java/org/kohsuke/github/AbstractBuilder.java index f78e72633b..17b122aff2 100644 --- a/src/main/java/org/kohsuke/github/AbstractBuilder.java +++ b/src/main/java/org/kohsuke/github/AbstractBuilder.java @@ -11,19 +11,19 @@ * This class can be use to make a Builder that supports both batch and single property changes. *
* Batching looks like this: + *
* ** update().someName(value).otherName(value).done() *- * *
* Single changes look like this: + *
* ** set().someName(value); * set().otherName(value); *- * *
* If {@link S} is the same as {@link R}, {@link #with(String, Object)} will commit changes after the first value change * and return a {@link R} from {@link #done()}.