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
This commit is contained in:
Andrew Solovay
2023-06-23 15:49:15 -07:00
parent 34a00ec646
commit 29e0d15fd4

View File

@@ -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;