From 6dc48753f5e8d5a66835f4f82e84e030b8254968 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sat, 18 Apr 2020 19:49:25 +0100 Subject: [PATCH] Prefer "Tap" to "Press" I'm preferring the verb "tap" to "press". --- website/sandbox/learnpianochords/src/Practice.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/sandbox/learnpianochords/src/Practice.elm b/website/sandbox/learnpianochords/src/Practice.elm index 229f019aa..c0f5ffcfd 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, "" )