Skip to content

Commit

Permalink
Update ScopeIf description (#11876)
Browse files Browse the repository at this point in the history
* Update ScopeIf description

* ScopeIf Description Update

* Update Resources.Designer.cs
  • Loading branch information
Amoursol authored Jul 21, 2021
1 parent 62a8ecd commit 73299c0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/AssemblySharedInfoGenerator/AssemblySharedInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
// to distinguish one build from another. AssemblyFileVersion is specified
// in AssemblyVersionInfo.cs so that it can be easily incremented by the
// automated build process.
[assembly: AssemblyVersion("2.13.0.1874")]
[assembly: AssemblyVersion("2.13.0.2014")]


// By default, the "Product version" shown in the file properties window is
Expand All @@ -64,4 +64,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("2.13.0.1874")]
[assembly: AssemblyFileVersion("2.13.0.2014")]

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@
<value>Starting accumulated value, to be passed into the first call to the Reductor function.</value>
</data>
<data name="ScopeIfDescription" xml:space="preserve">
<value>Returns the result of either the True or False input depending on what boolean value is toggled in the test input.</value>
<value>Returns the result of either True or False input depending on what boolean value is toggled in the test input. Supports recursion which requires that only a single branch be executed. It's critical that that both True and False branches are isolated and do not interact with each other!</value>
<comment>Description for Scope If</comment>
</data>
<data name="SelectionPortDataResultToolTip" xml:space="preserve">
Expand Down
2 changes: 1 addition & 1 deletion src/Libraries/CoreNodeModels/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@
<value>Starting accumulated value, to be passed into the first call to the Reductor function.</value>
</data>
<data name="ScopeIfDescription" xml:space="preserve">
<value>Returns the result of either the True or False input depending on what boolean value is toggled in the test input.</value>
<value>Returns the result of either True or False input depending on what boolean value is toggled in the test input. Supports recursion which requires that only a single branch be executed. It's critical that that both True and False branches are isolated and do not interact with each other!</value>
<comment>Description for Scope If</comment>
</data>
<data name="SelectionPortDataResultToolTip" xml:space="preserve">
Expand Down

0 comments on commit 73299c0

Please sign in to comment.