]> git.earman.xyz Git - sensor-watch.git/commitdiff
fix typos
authorJoey Castillo <jose.castillo@gmail.com>
Mon, 18 Oct 2021 19:36:39 +0000 (15:36 -0400)
committerJoey Castillo <jose.castillo@gmail.com>
Mon, 18 Oct 2021 19:36:39 +0000 (15:36 -0400)
movement/README.md

index 8b3d478a778565c79e7625c1ba55204c7affe099..e4eeb1c41b12e92455e44e17aad6a5df53718b18 100644 (file)
@@ -61,7 +61,7 @@ You should set up a switch statement that handles, at the very least, the `EVENT
 
 ### watch_face_resign
 
-This function is called just before your watch face goes off screen. You should disable any peripherals you enabled in `watch_face_activate`. If you requested an tick frequency other than 1 Hz at any point in your code, **you must reset it to 1 Hz when you resign**. It is passed the same settings and context as the other functions.
+This function is called just before your watch face goes off screen. You should disable any peripherals you enabled in `watch_face_activate`. If you requested a tick frequency other than 1 Hz at any point in your code, **you must reset it to 1 Hz when you resign**. The watch_face_resign function is passed the same settings and context as the other functions.
 
 Putting it into practice: the Pulsometer watch face
 ---------------------------------------------------