Skip to content

Commit

Permalink
Fix several typos in example_node.py.example (comfyanonymous#3204)
Browse files Browse the repository at this point in the history
This change includes corrections for several spelling errors in the
documentation of example_node.py.example file.

These were previously raised by comfyanonymous#3157, but they missed a few.
  • Loading branch information
HaydenReeve authored Jul 1, 2024
1 parent 5dccfef commit 755c48d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions custom_nodes/example_node.py.example
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ class Example:
Attributes
----------
RETURN_TYPES (`tuple`):
The type of each element in the output tulple.
The type of each element in the output tuple.
RETURN_NAMES (`tuple`):
Optional: The name of each output in the output tulple.
Optional: The name of each output in the output tuple.
FUNCTION (`str`):
The name of the entry-point method. For example, if `FUNCTION = "execute"` then it will run Example().execute()
OUTPUT_NODE ([`bool`]):
Expand Down Expand Up @@ -44,7 +44,7 @@ class Example:
* Key field_name (`string`): Name of a entry-point method's argument
* Value field_config (`tuple`):
+ First value is a string indicate the type of field or a list for selection.
+ Secound value is a config for type "INT", "STRING" or "FLOAT".
+ Second value is a config for type "INT", "STRING" or "FLOAT".
"""
return {
"required": {
Expand All @@ -61,7 +61,7 @@ class Example:
"min": 0.0,
"max": 10.0,
"step": 0.01,
"round": 0.001, #The value represeting the precision to round to, will be set to the step value by default. Can be set to False to disable rounding.
"round": 0.001, #The value representing the precision to round to, will be set to the step value by default. Can be set to False to disable rounding.
"display": "number"}),
"print_to_screen": (["enable", "disable"],),
"string_field": ("STRING", {
Expand Down

0 comments on commit 755c48d

Please sign in to comment.