Skip to content

Commit 5bdd4e8

Browse files
committed
add missing curly braces
1 parent 8c2fd0c commit 5bdd4e8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/JsonLD/Core/JsonLdProcessor.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ public static JArray Expand(JToken input, JsonLdOptions opts)
7575
foreach (var c in ((string) input))
7676
{
7777
if (c == ':')
78+
{
7879
hasColon = true;
80+
}
81+
7982
if (!hasColon && (c == '{' || c == '['))
8083
{
8184
isIriString = false;

0 commit comments

Comments
 (0)