From 472da548568ea43dc1a6f52c6282b020112d371d Mon Sep 17 00:00:00 2001 From: clempat Date: Mon, 11 May 2020 22:00:08 +0200 Subject: [PATCH] doc: fix small typo on effect.py (#790) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This could confuse people who does stupid copy paste 😄 --- docs/docs/en/effects/OurFirstEffect.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/en/effects/OurFirstEffect.md b/docs/docs/en/effects/OurFirstEffect.md index 1d96875e..a40a5ba2 100644 --- a/docs/docs/en/effects/OurFirstEffect.md +++ b/docs/docs/en/effects/OurFirstEffect.md @@ -9,7 +9,7 @@ Target of this effect is to show the general structure of an effect, make you co * **Configure a led matrix layout at "LED Hardware"-section at the web configuration to 10x10 LEDs** ### Start -First, we start with the python file. Create a new file called `neweffekt.py` in your `custom-effects` folder. \ +First, we start with the python file. Create a new file called `neweffect.py` in your `custom-effects` folder. \ We need to import some modules, `hyperion` and `time` is always required. The time module comes from Python, if you want to know, what methods such a module has, visit the [Python documentation](https://docs.python.org/3.5/library/). What `hyperion` can do, is already explained at [Effect Engine API](/en/effects/api.md). ``` python @@ -144,4 +144,4 @@ Let's add a option to set the image to black on a configurable interval in secon ::: tip I am sorry, more will come soon -::: \ No newline at end of file +:::