diff options
| author | 2023-06-23 15:49:15 -0700 | |
|---|---|---|
| committer | 2023-06-26 16:13:54 +0000 | |
| commit | 29e0d15fd4d007701ea11ed3fe61aa50db9c508a (patch) | |
| tree | 73962f87c3e8e5970e66ff427692fa505b792a38 | |
| parent | 34a00ec6468e02f0ae198f7f24db548f9e15052f (diff) | |
docs: Fix bad @code syntax in doc comment
A doc comment used the incorrect syntax (@code ...) (should be
curly braces, {@code ...}.
NO_TEST , fixes a doc bug (no code edits).
Staged the fixed doc to:
* go/dac-stage/reference/android/content/Context
* go/dac-stage/reference/kotlin/android/content/Context
Test: m -j 8 ds-docs-switched
Bug: 288173952
Change-Id: I891673e62225a724a9184470804d60f145b8acea
| -rw-r--r-- | core/java/android/content/Context.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/content/Context.java b/core/java/android/content/Context.java index 06635eedeb9a..5d076d487b30 100644 --- a/core/java/android/content/Context.java +++ b/core/java/android/content/Context.java @@ -683,7 +683,7 @@ public abstract class Context { public static final int BIND_EXTERNAL_SERVICE = 0x80000000; /** - * Works in the same way as {@link #BIND_EXTERNAL_SERVICE}, but it's defined as a (@code long) + * Works in the same way as {@link #BIND_EXTERNAL_SERVICE}, but it's defined as a {@code long} * value that is compatible to {@link BindServiceFlags}. */ public static final long BIND_EXTERNAL_SERVICE_LONG = 1L << 62; |