Skip to content

Commit 93e5f64

Browse files
committed
Apply one CRC feedback
1 parent ae4b690 commit 93e5f64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Assets/Tests/InputSystem/APIVerificationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ public bool IsMatch(List<string> scopeStack, string member)
850850
if (scopeStack[i].StartsWith("namespace"))
851851
{
852852
if (namespaceScope.Length == 0)
853-
namespaceScope = scopeStack[i].Substring(scopeStack[i].IndexOf(' ') + 1);
853+
namespaceScope = scopeStack[i].Substring(scopeStack[i].IndexOf(' ') + 1).Trim();
854854
}
855855
else if (typeScope.Length == 0)
856856
{

0 commit comments

Comments
 (0)