File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
firebase-dataconnect/src/main/kotlin/com/google/firebase/dataconnect Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ package com.google.firebase.dataconnect
20
20
* Stores the value of an `enum` or a string if the string does not correspond to one of the enum's
21
21
* values.
22
22
*/
23
- // TODO: Change the visilibity of `EnumValue` to `public` once it gets approval
23
+ // TODO: Change the visibility of `EnumValue` to `public` once it gets approval
24
24
// by Firebase API Council.
25
25
internal sealed interface EnumValue <out T : Enum <out T >> {
26
26
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import kotlinx.serialization.encoding.Encoder
32
32
* @param values The values of the enum to deserialize; for example, for an enum named `Foo` this
33
33
* value should be `Foo.entries` or `Foo.values()`.
34
34
*/
35
- // TODO: Change the visilibity of `EnumValueSerializer` to `public` once it gets approval
35
+ // TODO: Change the visibility of `EnumValueSerializer` to `public` once it gets approval
36
36
// by Firebase API Council.
37
37
internal open class EnumValueSerializer <T : Enum <T >>(values : Iterable <T >) :
38
38
KSerializer <EnumValue <T >> {
You can’t perform that action at this time.
0 commit comments