From cde678c53bce6c259a740a8034657f4087a3643d Mon Sep 17 00:00:00 2001 From: Kleidon <157427436+KleidonBD@users.noreply.github.com> Date: Thu, 3 Oct 2024 18:46:30 -0600 Subject: [PATCH] Fix "some times" typo The space in "some times" is a mistake and should be removed as it should be one word, not two (as can be seen when it is used correctly further down the page at the start of the, "Running one-off scripts using EditorScript" section). --- tutorials/plugins/running_code_in_the_editor.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/plugins/running_code_in_the_editor.rst b/tutorials/plugins/running_code_in_the_editor.rst index 4609a3ba2..0f0914ef7 100644 --- a/tutorials/plugins/running_code_in_the_editor.rst +++ b/tutorials/plugins/running_code_in_the_editor.rst @@ -248,7 +248,7 @@ angle add a setter ``set(new_speed)`` which is executed with the input from the Getting notified when resources change -------------------------------------- -Some times you want your tool to use a resource. However, when you change a +Sometimes you want your tool to use a resource. However, when you change a property of that resource in the editor, the ``set()`` method of your tool will not be called.