We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a719dca commit b95fba8Copy full SHA for b95fba8
README.md
@@ -111,8 +111,8 @@ way to do it. I can't globally find/replace `"RUNNING"` to `"STARTED"` because i
111
the unrelated string constants representing `TriathlonStage`. Instead, I have to examine every
112
occurrance of the string `"RUNNING"` to see if it needs to change.
113
114
-I might try to make this step easier by introducing constants for the string literals, but this has
115
-problems as well:
+I might try to solve both problems by introducing constants for the string literals, but this has
+issues as well:
116
117
``` javascript
118
type Status = "RUNNING" | "STOPPED";
0 commit comments