diff options
author | Andy Maloney <asmaloney@gmail.com> | 2022-08-17 18:08:09 -0400 |
---|---|---|
committer | Andy Maloney <asmaloney@gmail.com> | 2022-08-17 19:51:17 -0400 |
commit | 28e66882e59d51f69cc0b9786033f5570b08d114 (patch) | |
tree | 4212bbfba0243fa4fe580e10e8fa8a47031da3eb /doc/classes/VisualShaderNodeCustom.xml | |
parent | dbd15243621ec595742b18abc4c26f3cb2e00f3d (diff) | |
download | redot-engine-28e66882e59d51f69cc0b9786033f5570b08d114.tar.gz |
[doc] Fix grammar in class docs: amount vs. number
Number is used for things that can be counted (discrete items - think "integer" in this context).
Also fixes a couple of awkward phrases.
Diffstat (limited to 'doc/classes/VisualShaderNodeCustom.xml')
-rw-r--r-- | doc/classes/VisualShaderNodeCustom.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/VisualShaderNodeCustom.xml b/doc/classes/VisualShaderNodeCustom.xml index 9813b4778d..d96969b383 100644 --- a/doc/classes/VisualShaderNodeCustom.xml +++ b/doc/classes/VisualShaderNodeCustom.xml @@ -68,7 +68,7 @@ <method name="_get_input_port_count" qualifiers="virtual const"> <return type="int" /> <description> - Override this method to define the amount of input ports of the associated custom node. + Override this method to define the number of input ports of the associated custom node. Defining this method is [b]required[/b]. If not overridden, the node has no input ports. </description> </method> @@ -98,7 +98,7 @@ <method name="_get_output_port_count" qualifiers="virtual const"> <return type="int" /> <description> - Override this method to define the amount of output ports of the associated custom node. + Override this method to define the number of output ports of the associated custom node. Defining this method is [b]required[/b]. If not overridden, the node has no output ports. </description> </method> |