Commit aae30cc
committed
android(net): rewrite Api.kt KDoc to avoid embedded '*/' close-comment marker
The Wave-3 scaffold's docstring contained a literal '`*/public`'
inside a /** … */ KDoc block. Kotlin's KDoc parser does not escape
'*/'; it terminates the comment at the first occurrence, so 'public'
became a code token and kotlinc fired 'Syntax error: Expecting a
top level declaration' for every subsequent byte of the file. First
caught by android.yml run 26395264293.
Rewrote the line to read '`/public` sub-path' with an inline note
explaining the workaround. Same intent, parser-safe.1 parent f934014 commit aae30cc
1 file changed
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | | - | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
27 | 28 | | |
28 | 29 | | |
29 | 30 | | |
| |||
0 commit comments