Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet authored Aug 29, 2024
1 parent d4c29c2 commit bbee168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Kiota.Builder/CodeDOM/CodeComposedTypeBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public DeprecationInformation? Deprecation
public bool IsComposedOfObjectsAndPrimitives(Func<CodeType, CodeComposedTypeBase, bool> checkIfPrimitive)
{
// Count the number of primitives in Types
return Types.Any(x => checkIfPrimitive(x, this)) && Type.Any(x => !checkIfPrimitive(x, this));
return Types.Any(x => checkIfPrimitive(x, this)) && Types.Any(x => !checkIfPrimitive(x, this));
}

}

0 comments on commit bbee168

Please sign in to comment.