Skip to content

Commit 72503a1

Browse files
laurentkempeJRAlexander
authored andcommitted
Add missing space (#5482)
1 parent e8af5c6 commit 72503a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/programming-guide/generics/constraints-on-type-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Constraints inform the compiler about the capabilities a type argument must have
1313

1414
|Constraint|Description|
1515
|----------------|-----------------|
16-
|`where T: struct`|The type argument must be a value type. Any value type except <xref:System.Nullable> can be specified. For more information, see [Using Nullable Types](../nullable-types/using-nullable-types.md).|
16+
|`where T : struct`|The type argument must be a value type. Any value type except <xref:System.Nullable> can be specified. For more information, see [Using Nullable Types](../nullable-types/using-nullable-types.md).|
1717
|`where T : class`|The type argument must be a reference type. This constraint applies also to any class, interface, delegate, or array type.|
1818
|`where T : unmanaged`|The type argument must not be a reference type and must not contain any reference type members at any level of nesting.|
1919
|`where T : new()`|The type argument must have a public parameterless constructor. When used together with other constraints, the `new()` constraint must be specified last.|

0 commit comments

Comments
 (0)