Skip to content

Commit 84a6e2b

Browse files
committed
chore: fix formatting
1 parent 3efc983 commit 84a6e2b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

docs/upgrade-guide-2.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -367,21 +367,21 @@ To enable full compatibility with JSON Schema, the OpenApiDocument class now sup
367367
In addition, a BaseUri property has been added to represent the absolute location of the OpenAPI document. If the document’s location is not provided, this property will be set to a generated placeholder URI.
368368

369369
```csharp
370+
/// <summary>
371+
/// Describes an OpenAPI object (OpenAPI document). See: https://spec.openapis.org
372+
/// </summary>
373+
public class OpenApiDocument : IOpenApiSerializable, IOpenApiExtensible, IMetadataContainer
374+
{
370375
/// <summary>
371-
/// Describes an OpenAPI object (OpenAPI document). See: https://spec.openapis.org
376+
/// The default value for the $schema keyword within Schema Objects contained within this OAS document. This MUST be in the form of a URI.
372377
/// </summary>
373-
public class OpenApiDocument : IOpenApiSerializable, IOpenApiExtensible, IMetadataContainer
374-
{
375-
/// <summary>
376-
/// The default value for the $schema keyword within Schema Objects contained within this OAS document. This MUST be in the form of a URI.
377-
/// </summary>
378-
public Uri? JsonSchemaDialect { get; set; }
379-
380-
/// <summary>
381-
/// Absolute location of the document or a generated placeholder if location is not given
382-
/// </summary>
383-
public Uri BaseUri { get; internal set; }
384-
}
378+
public Uri? JsonSchemaDialect { get; set; }
379+
380+
/// <summary>
381+
/// Absolute location of the document or a generated placeholder if location is not given
382+
/// </summary>
383+
public Uri BaseUri { get; internal set; }
384+
}
385385
```
386386

387387
### Webhooks

0 commit comments

Comments
 (0)