Skip to content

Commit a5fb542

Browse files
committed
Fix links
1 parent 1938455 commit a5fb542

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/knowledge/api-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ unambiguously.
8080
### Runtime / instrumentation-time boundaries (Span methods, metric recordings, log builders)
8181

8282
Do **not** throw. Log the violation via
83-
[`ApiUsageLogger`](../../common/src/main/java/io/opentelemetry/common/ApiUsageLogger.java)
83+
[`ApiUsageLogger`](../../common/src/main/java/io/opentelemetry/common/impl/ApiUsageLogger.java)
8484
which logs at `FINEST` with a stack trace so the offending call site is visible — then degrade
8585
gracefully (return `this`, an empty/noop result, or substitute a safe default such as
8686
`Attributes.empty()` or `Context.current()`):

docs/knowledge/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ All tasks can be scoped to a single module by prefixing with the module path:
2525

2626
`./gradlew build` and `./gradlew check` both depend on the `jApiCmp` task, which compares the
2727
locally-built jars against the latest release and writes diffs to `docs/apidiffs/current_vs_latest/`.
28-
Include any changes to those files in your PR. See [api-stability.md](api-stability.md#japicmp)
28+
Include any changes to those files in your PR. See [api-stability.md](api-design.md#japicmp)
2929
for details.
3030

3131
If your branch is not up to date with `main`, `jApiCmp` may produce a diff that reflects changes

0 commit comments

Comments
 (0)