From ceb1026deb07b030e34e434eb26db3a5011bd68a Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 30 Dec 2020 06:47:20 +1100 Subject: [PATCH] docs: fix simple typo, implemenation -> implementation There is a small typo in src/examples/gpiozero/button_example.py, src/examples/gpiozero/simple_button_example.py. Should read `implementation` rather than `implemenation`. --- src/examples/gpiozero/button_example.py | 2 +- src/examples/gpiozero/simple_button_example.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/examples/gpiozero/button_example.py b/src/examples/gpiozero/button_example.py index 8cfeeb9b..9934850a 100755 --- a/src/examples/gpiozero/button_example.py +++ b/src/examples/gpiozero/button_example.py @@ -2,7 +2,7 @@ """Example code that demonstrates using a standard pin along with a hat pin. The button uses a standard GPIO pin through the raspberry pi's memory mapped io, -while the led uses the hat's sysfs driver. This implemenation difference is +while the led uses the hat's sysfs driver. This implementation difference is transparent to the user. The demo will light up the on board LED whenever the user presses the button. diff --git a/src/examples/gpiozero/simple_button_example.py b/src/examples/gpiozero/simple_button_example.py index e061851a..0064b8bb 100755 --- a/src/examples/gpiozero/simple_button_example.py +++ b/src/examples/gpiozero/simple_button_example.py @@ -2,7 +2,7 @@ """Example code that demonstrates using a standard pin along with a hat pin. The button uses a standard GPIO pin through the raspberry pi's memory mapped io, -while the led uses the hat's sysfs driver. This implemenation difference is +while the led uses the hat's sysfs driver. This implementation difference is transparent to the user. The demo will light up the on board LED whenever the user presses the button.