diff options
author | Jim Hays <jim@emporatitle.com> | 2022-12-15 02:01:32 +0000 |
---|---|---|
committer | Jim Hays <jim@emporatitle.com> | 2022-12-15 02:01:32 +0000 |
commit | c0355caefe3d82e304e6d832699d581fc8f9fbf9 (patch) | |
tree | fd4289de6410ad909371225550e768e37136661e /modules/scripts.py | |
parent | 685f9631b56ff8bd43bce24ff5ce0f9a0e9af490 (diff) | |
download | stable-diffusion-webui-gfx803-c0355caefe3d82e304e6d832699d581fc8f9fbf9.tar.gz stable-diffusion-webui-gfx803-c0355caefe3d82e304e6d832699d581fc8f9fbf9.tar.bz2 stable-diffusion-webui-gfx803-c0355caefe3d82e304e6d832699d581fc8f9fbf9.zip |
Fix various typos
Diffstat (limited to 'modules/scripts.py')
-rw-r--r-- | modules/scripts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/scripts.py b/modules/scripts.py index 23ca195d..722f8685 100644 --- a/modules/scripts.py +++ b/modules/scripts.py @@ -36,7 +36,7 @@ class Script: def ui(self, is_img2img):
"""this function should create gradio UI elements. See https://gradio.app/docs/#components
The return value should be an array of all components that are used in processing.
- Values of those returned componenbts will be passed to run() and process() functions.
+ Values of those returned components will be passed to run() and process() functions.
"""
pass
@@ -47,7 +47,7 @@ class Script: This function should return:
- False if the script should not be shown in UI at all
- - True if the script should be shown in UI if it's scelected in the scripts drowpdown
+ - True if the script should be shown in UI if it's selected in the scripts dropdown
- script.AlwaysVisible if the script should be shown in UI at all times
"""
|