From 9610d17927a01cc4da6c498d710e0af681474904 Mon Sep 17 00:00:00 2001 From: Michael Kirschner Date: Wed, 27 Mar 2024 13:18:19 -0400 Subject: [PATCH] Update DropDown.cs (#57) --- src/SampleLibraryUI/Examples/DropDown.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SampleLibraryUI/Examples/DropDown.cs b/src/SampleLibraryUI/Examples/DropDown.cs index 2ded7cf..71f8f64 100644 --- a/src/SampleLibraryUI/Examples/DropDown.cs +++ b/src/SampleLibraryUI/Examples/DropDown.cs @@ -15,7 +15,7 @@ public class DropDownExample : DSDropDownBase public DropDownExample() : base("item"){} // Starting with Dynamo v2.0 you must add Json constructors for all nodeModel - // dervived nodes to support the move from an Xml to Json file format. Failing to + // derived nodes to support the move from an Xml to Json file format. Failing to // do so will result in incorrect ports being generated upon serialization/deserialization. // This constructor is called when opening a Json graph. We must also pass the deserialized // ports with the json constructor and then call the base class passing the ports as parameters.