diff options
author | William Carroll <wpcarro@gmail.com> | 2020-04-18T18·49+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-04-18T18·49+0100 |
commit | 6dc48753f5e8d5a66835f4f82e84e030b8254968 (patch) | |
tree | 10badbce7587ae67cd1c787a9c74387133eeb260 | |
parent | 82ebc0ad198bc5c0bdc3508d0dad54ea33617db1 (diff) |
Prefer "Tap" to "Press"
I'm preferring the verb "tap" to "press".
-rw-r--r-- | website/sandbox/learnpianochords/src/Practice.elm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/sandbox/learnpianochords/src/Practice.elm b/website/sandbox/learnpianochords/src/Practice.elm index 229f019aa030..c0f5ffcfded0 100644 --- a/website/sandbox/learnpianochords/src/Practice.elm +++ b/website/sandbox/learnpianochords/src/Practice.elm @@ -24,7 +24,7 @@ render model = let ( handleClick, buttonText ) = if model.isPaused then - ( State.Play, "Press to practice" ) + ( State.Play, "Tap to practice" ) else ( State.Pause, "" ) |