Skip to content

Commit

Permalink
Fixed missing backquote (thanks to @valery1707)
Browse files Browse the repository at this point in the history
  • Loading branch information
elizarov committed Mar 25, 2023
1 parent 3f28949 commit 78b539e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions proposals/statics.md
Original file line number Diff line number Diff line change
Expand Up @@ -1809,9 +1809,9 @@ fun Color.static.parse(s: String): Color // Color.parse
fun <T> Box.static.of(value: T): Box<T> // Box.of
```

| Alternative | Scheme | `Color.background` on JVM | Color.parse` on JVM | `Box.of` on JVM |
|--------------|-------------------------|---------------------------|---------------------|-----------------|
| 0 (proposed) | Class$name | `getColor$background` | `Color$parse` | `Box$of` |
| 1 | name$Class | `getBackground$Color` | `parse$Color` | `of$Box` |
| 2 | lower(Class)upper(name) | `getColorBackground` | `colorParse` | `boxOf` |
| 3 | nameClass | `getBackgroundColor` | `parseColor` | `ofBox` |
| Alternative | Scheme | `Color.background` on JVM | `Color.parse` on JVM | `Box.of` on JVM |
|--------------|-------------------------|---------------------------|----------------------|-----------------|
| 0 (proposed) | Class$name | `getColor$background` | `Color$parse` | `Box$of` |
| 1 | name$Class | `getBackground$Color` | `parse$Color` | `of$Box` |
| 2 | lower(Class)upper(name) | `getColorBackground` | `colorParse` | `boxOf` |
| 3 | nameClass | `getBackgroundColor` | `parseColor` | `ofBox` |

0 comments on commit 78b539e

Please sign in to comment.