Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Commit de52cb9

Browse files
committed
minor tweak to function description to make things more "readable"
1 parent 7aabf35 commit de52cb9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package/components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def param_descriptions(params):
5555
if param.Kind == GH.Kernel.GH_ParamKind.input:
5656
s = "{0} (in) [{1}] - {2}"
5757
if param.Optional:
58-
s = "{0} (in|optional) [{1}] - {2}"
58+
s = "{0} (in, optional) [{1}] - {2}"
5959
rc.append(s.format(param.NickName, param.TypeName, param.Description))
6060
elif param.Kind == GH.Kernel.GH_ParamKind.output:
6161
s = "{0} (out) [{1}] - {2}"

0 commit comments

Comments
 (0)