Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Copilot <[email protected]>
  • Loading branch information
mandel-macaque and Copilot authored Jan 17, 2025
1 parent 6b11e00 commit c6fe088
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rgen/Microsoft.Macios.Generator/DataModel/TypeInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ namespace Microsoft.Macios.Generator.DataModel;
public bool IsVoid => SpecialType == SpecialType.System_Void;

/// <summary>
/// True if the type is for an iterface.
/// True if the type is for an interface.
/// </summary>
public bool IsInterface { get; init; }

/// <summary>
/// True if the type represents an interger that was built using one of the keywords, like byte, int, nint etc.
/// True if the type represents an integer that was built using one of the keywords, like byte, int, nint etc.
///
/// This can be used to decide if we should use the name of the matadata name to cast the value.
/// This can be used to decide if we should use the name of the metadata name to cast the value.
/// </summary>
public bool IsNativeIntegerType { get; init; }

Expand Down

0 comments on commit c6fe088

Please sign in to comment.