Skip to content

Commit 8a72658

Browse files
committed
javadoc changes
Signed-off-by: Ceki Gulcu <[email protected]>
1 parent 154b4e4 commit 8a72658

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

slf4j-api/src/main/java/org/slf4j/spi/LoggingEventBuilder.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@
3131
import org.slf4j.helpers.CheckReturnValue;
3232

3333
/**
34-
* This is the main interface in slf4j's fluent API for creating
34+
* This is the central interface in slf4j's fluent API for creating
3535
* {@link org.slf4j.event.LoggingEvent logging events}.
36-
*
36+
*
37+
*
3738
* @author Ceki G&uuml;lc&uuml;
3839
* @since 2.0.0
3940
*/
@@ -90,7 +91,8 @@ default LoggingEventBuilder arg(Object p) {
9091

9192

9293
/**
93-
* <p>Add an argument supplier to the event being built. Synonymous with {@link #addArgument(Supplier)}.
94+
* <p>Add an argument supplier to the event being built.
95+
* Synonymous with {@link #addArgument(Supplier)}.
9496
* </p>
9597
*
9698
* @param objectSupplier an Object supplier to add.
@@ -105,7 +107,7 @@ default LoggingEventBuilder arg(Supplier<?> objectSupplier) {
105107
/**
106108
* Add a value of type <code>boolean</code> to the event being built.
107109
*
108-
* <p>The default implementation simply casts to <code>Boolean</code>. However, However, the NOP implementation, i.e.
110+
* <p>The default implementation simply casts to <code>Boolean</code>. However, the NOP implementation, i.e.
109111
* {@link NOPLoggingEventBuilder}, skips the cast.</p>
110112
*
111113
* @param b a value of type <code>boolean</code> value to add.

0 commit comments

Comments
 (0)