Skip to content

Commit de9a991

Browse files
committed
Fix issue with adapters namespace for folder and link
1 parent 9b9e6bd commit de9a991

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SchemaDocumentationGenerator/SchemaDocumentationGenerator/TypeGeneration/DocumentationLink.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ private static string BHoMMainNameSpace(this Type type)
134134

135135
IEnumerable<string> parts;
136136
if (split[2] == "Adapters")
137-
return $"{split[2]}.{split[3]}";
137+
return $"{split[2]}/{split[3]}";
138138
else
139139
return split[2];
140140
}

0 commit comments

Comments
 (0)