Skip to content

Commit a18c2f7

Browse files
committedFeb 19, 2021
[Owl] Spell gooder.
Change-Id: Ia38ddea33c9f7d79cdc88d266013464784455bd9
1 parent a30b2c6 commit a18c2f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎Owl/app/src/main/java/com/example/owl/ui/onboarding/Onboarding.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ private enum class SelectionState { Unselected, Selected }
167167
* Class holding animating values when transitioning topic chip states.
168168
*/
169169
private class TopicChipTransition(
170-
corerRadius: State<Dp>,
170+
cornerRadius: State<Dp>,
171171
selectedAlpha: State<Float>,
172172
checkScale: State<Float>
173173
) {
174-
val corerRadius by corerRadius
174+
val cornerRadius by cornerRadius
175175
val selectedAlpha by selectedAlpha
176176
val checkScale by checkScale
177177
}
@@ -214,7 +214,7 @@ private fun TopicChip(topic: Topic) {
214214
elevation = OwlTheme.elevations.card,
215215
shape = MaterialTheme.shapes.medium.copy(
216216
topStart = CornerSize(
217-
topicChipTransitionState.corerRadius
217+
topicChipTransitionState.cornerRadius
218218
)
219219
)
220220
) {

0 commit comments

Comments
 (0)
Please sign in to comment.