Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Environment_Engine: Fix typo in method name + versioning for method as appropriate #2488

Merged
merged 1 commit into from
Apr 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Environment_Engine/Modify/SetAdjacentSpaces.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public static partial class Modify
[Input("panel", "A single Environment Panel to add the space names to")]
[Input("spaceNames", "The collection of names of the spaces the panel is connected to")]
[Output("panel", "A modified Environment Panel with the provided space names listed as the connecting spaces")]
public static Panel SetAdjancentSpaces(this Panel panel, List<string> spaceNames)
[PreviousVersion("4.2", "BH.Engine.Environment.Modify.SetAdjancentSpaces(BH.oM.Environment.Elements.Panel, System.Collections.Generic.List<System.String>)")]
public static Panel SetAdjacentSpaces(this Panel panel, List<string> spaceNames)
{
if(panel == null)
{
Expand Down