Skip to content

Commit ac8a6e1

Browse files
committed
fix typo
1 parent bc7a944 commit ac8a6e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Microsoft.OpenApi/Validations/Rules/OpenApiSchemaRules.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ private static IEnumerable<OpenApiSchema> GetSchemaCombinators(OpenApiSchema sch
182182

183183
private static void EnqueueSchemas(Queue<OpenApiSchema> schemasToVisit, IEnumerable<OpenApiSchema> childSchemas)
184184
{
185-
foreach (var childSchema in childSchemas.Where(s => is not null))
185+
foreach (var childSchema in childSchemas.Where(s => s is not null))
186186
{
187187
schemasToVisit.Enqueue(childSchema);
188188
}

0 commit comments

Comments
 (0)