Skip to content

Commit 36d5938

Browse files
.Net: Fix formatting errors in the schema files (#8493)
### Motivation and Context Fix PR build failures ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone 😄
1 parent 6009370 commit 36d5938

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dotnet/src/InternalUtilities/src/Schema/JsonSchemaGenerationContext.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
namespace JsonSchemaMapper;
1010

11-
/// <summary>
12-
/// Defines the context in which a JSON schema within a type graph is being generated.
13-
/// </summary>
11+
/// <summary>
12+
/// Defines the context in which a JSON schema within a type graph is being generated.
13+
/// </summary>
1414
#if EXPOSE_JSON_SCHEMA_MAPPER
1515
public
1616
#else

dotnet/src/InternalUtilities/src/Schema/JsonSchemaMapper.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static JsonNode GetJsonSchema(this JsonSerializerOptions options, Type ty
4242
{
4343
if (options is null)
4444
{
45-
ThrowHelpers.ThrowArgumentNullException(nameof(options));
45+
ThrowHelpers.ThrowArgumentNullException(nameof(options));
4646
}
4747

4848
if (type is null)

0 commit comments

Comments
 (0)