diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2022-10-18 17:18:56 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-19 08:52:12 +0000 |
commit | bb0e7232b301d1706bbd0e09367dece3bb7ac07c (patch) | |
tree | b1be999f4b89836a6ac1c9b7a4ed92913b167b9c /modules | |
parent | 83a517eb96cc36cf1dc0915a9ebde43a7e05c7da (diff) | |
download | stable-diffusion-webui-gfx803-bb0e7232b301d1706bbd0e09367dece3bb7ac07c.tar.gz stable-diffusion-webui-gfx803-bb0e7232b301d1706bbd0e09367dece3bb7ac07c.tar.bz2 stable-diffusion-webui-gfx803-bb0e7232b301d1706bbd0e09367dece3bb7ac07c.zip |
Fix typo in prompt_parser.py
assoicated -> associated
Diffstat (limited to 'modules')
-rw-r--r-- | modules/prompt_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/prompt_parser.py b/modules/prompt_parser.py index 919d5d31..f70872c4 100644 --- a/modules/prompt_parser.py +++ b/modules/prompt_parser.py @@ -275,7 +275,7 @@ re_attention = re.compile(r""" def parse_prompt_attention(text):
"""
- Parses a string with attention tokens and returns a list of pairs: text and its assoicated weight.
+ Parses a string with attention tokens and returns a list of pairs: text and its associated weight.
Accepted tokens are:
(abc) - increases attention to abc by a multiplier of 1.1
(abc:3.12) - increases attention to abc by a multiplier of 3.12
|