Skip to content

Commit

Permalink
Fix JavaDoc of MDCAmbit.java
Browse files Browse the repository at this point in the history
  • Loading branch information
henryju authored and ceki committed Dec 12, 2024
1 parent b69c1b3 commit 1a5c37e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slf4j-api/src/main/java/org/slf4j/MDCAmbit.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
* doSomething();
* } finally {
* // MDC remove "k0", "k1", "k2", clear the set of tracked keys
* mdch.clear();
* mdca.clear();
* }
* </pre>
*
Expand All @@ -71,7 +71,7 @@
* </p>
*
* <pre>
* DCAmbit mdca = new MDCAmbit();
* MDCAmbit mdca = new MDCAmbit();
* Runnable runnable = ...;
* mdca.put("k0", "v0").run(runnable);
* </pre>
Expand Down

0 comments on commit 1a5c37e

Please sign in to comment.