Skip to content

Commit

Permalink
javadoc changes
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Dec 22, 2023
1 parent 154b4e4 commit 8a72658
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions slf4j-api/src/main/java/org/slf4j/spi/LoggingEventBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@
import org.slf4j.helpers.CheckReturnValue;

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


/**
* <p>Add an argument supplier to the event being built. Synonymous with {@link #addArgument(Supplier)}.
* <p>Add an argument supplier to the event being built.
* Synonymous with {@link #addArgument(Supplier)}.
* </p>
*
* @param objectSupplier an Object supplier to add.
Expand All @@ -105,7 +107,7 @@ default LoggingEventBuilder arg(Supplier<?> objectSupplier) {
/**
* Add a value of type <code>boolean</code> to the event being built.
*
* <p>The default implementation simply casts to <code>Boolean</code>. However, However, the NOP implementation, i.e.
* <p>The default implementation simply casts to <code>Boolean</code>. However, the NOP implementation, i.e.
* {@link NOPLoggingEventBuilder}, skips the cast.</p>
*
* @param b a value of type <code>boolean</code> value to add.
Expand Down

0 comments on commit 8a72658

Please sign in to comment.