Skip to content

Commit b95fba8

Browse files
authored
Minor wording change in README
1 parent a719dca commit b95fba8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ way to do it. I can't globally find/replace `"RUNNING"` to `"STARTED"` because i
111111
the unrelated string constants representing `TriathlonStage`. Instead, I have to examine every
112112
occurrance of the string `"RUNNING"` to see if it needs to change.
113113

114-
I might try to make this step easier by introducing constants for the string literals, but this has
115-
problems as well:
114+
I might try to solve both problems by introducing constants for the string literals, but this has
115+
issues as well:
116116

117117
``` javascript
118118
type Status = "RUNNING" | "STOPPED";

0 commit comments

Comments
 (0)