Skip to content

Commit 7003d30

Browse files
authored
Dummy change to trigger rebuild
1 parent e5fe8d9 commit 7003d30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Microsoft.OpenApi.Readers/ParseNodes/ValueNode.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public override string GetScalarValue()
2929
}
3030

3131
return scalarNode.Value;
32-
}
32+
}
3333

3434
/// <summary>
3535
/// Create a <see cref="IOpenApiPrimitive"/>
@@ -70,7 +70,7 @@ public override IOpenApiAny CreateAny()
7070
{
7171
return
7272
new OpenApiDouble(
73-
dblValue); // Note(darrmi): This may be better as decimal. Further investigation required.
73+
dblValue); // Note(darrmi): This may be better as decimal. Further investigation required.
7474
}
7575

7676
if (DateTimeOffset.TryParse(value, out var datetimeValue))
@@ -82,4 +82,4 @@ public override IOpenApiAny CreateAny()
8282
return new OpenApiString(value);
8383
}
8484
}
85-
}
85+
}

0 commit comments

Comments
 (0)