Skip to content

Commit

Permalink
Fix capitalization.
Browse files Browse the repository at this point in the history
  • Loading branch information
sonny authored and emersion committed Nov 21, 2022
1 parent f6f8040 commit 226244e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions render.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,13 @@ void render_frame(struct swaylock_surface *surface) {
}
switch (state->auth_state) {
case AUTH_STATE_VALIDATING:
text = "verifying";
text = "Verifying";
break;
case AUTH_STATE_INVALID:
text = "wrong";
text = "Wrong";
break;
case AUTH_STATE_CLEAR:
text = "cleared";
text = "Cleared";
break;
case AUTH_STATE_INPUT:
case AUTH_STATE_INPUT_NOP:
Expand Down

0 comments on commit 226244e

Please sign in to comment.