Skip to content

Commit ce899f5

Browse files
committed
fix typo: visilibity -> visibility
1 parent eb1c1ae commit ce899f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

firebase-dataconnect/src/main/kotlin/com/google/firebase/dataconnect/EnumValue.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ package com.google.firebase.dataconnect
2020
* Stores the value of an `enum` or a string if the string does not correspond to one of the enum's
2121
* values.
2222
*/
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
2424
// by Firebase API Council.
2525
internal sealed interface EnumValue<out T : Enum<out T>> {
2626

firebase-dataconnect/src/main/kotlin/com/google/firebase/dataconnect/serializers/EnumValueSerializer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import kotlinx.serialization.encoding.Encoder
3232
* @param values The values of the enum to deserialize; for example, for an enum named `Foo` this
3333
* value should be `Foo.entries` or `Foo.values()`.
3434
*/
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
3636
// by Firebase API Council.
3737
internal open class EnumValueSerializer<T : Enum<T>>(values: Iterable<T>) :
3838
KSerializer<EnumValue<T>> {

0 commit comments

Comments
 (0)