Skip to content

Commit c397c39

Browse files
edit multireturn node example
1 parent 91e1470 commit c397c39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SampleLibraryZeroTouch/Examples/BasicExample.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ public static Dictionary<string, List<string>> MultiReturnExample()
153153
/// Otherwise the output ports will match the attribute names.
154154
/// The returned dictionary displayed in the node preview is displayed
155155
/// in the order of its keys as specified in the MultiReturn attribute.
156-
/// E.g. this node will display "thing1" and "thing2" in its output ports
156+
/// E.g. this node will display "thing one" and "thing two" in its output ports
157157
/// but it will show "thing 1" and "thing 2" in the node preview.
158158
/// </summary>
159-
/// <returns name="thing1">thing one</returns>
160-
/// <returns name="thing2">thing two</returns>
159+
/// <returns name="thing one">first thing</returns>
160+
/// <returns name="thing two">second thing</returns>
161161
[MultiReturn(new[] { "thing 1", "thing 2" })]
162162
public static Dictionary<string, List<string>> MultiReturnExample2()
163163
{

0 commit comments

Comments
 (0)