Skip to content

Commit

Permalink
edit multireturn node example
Browse files Browse the repository at this point in the history
  • Loading branch information
aparajit-pratap committed Dec 3, 2020
1 parent 91e1470 commit c397c39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SampleLibraryZeroTouch/Examples/BasicExample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ public static BasicExample Create([DefaultArgumentAttribute("Autodesk.DesignScri
/// Otherwise the output ports will match the attribute names.
/// The returned dictionary displayed in the node preview is displayed
/// in the order of its keys as specified in the MultiReturn attribute.
/// E.g. this node will display "thing1" and "thing2" in its output ports
/// E.g. this node will display "thing one" and "thing two" in its output ports
/// but it will show "thing 1" and "thing 2" in the node preview.
/// </summary>
/// <returns name="thing1">thing one</returns>
/// <returns name="thing2">thing two</returns>
/// <returns name="thing one">first thing</returns>
/// <returns name="thing two">second thing</returns>
[MultiReturn(new[] { "thing 1", "thing 2" })]
public static Dictionary<string, List<string>> MultiReturnExample2()
{
Expand Down

0 comments on commit c397c39

Please sign in to comment.