Skip to content

Commit ce6d77b

Browse files
v-maudelRon Petrusha
authored andcommitted
C26875: Removing space befor asterisk that breaks bold style (#6353)
Hello, @mairaw , Localization team has reported source content issue that causes localized version to have broken/different format compared to en-us version. "Extra space before asterisk causes broken content" Please review and merge the proposed file change to fix to target versions. If you make related fix in another PR then share your PR number so we can confirm and close this PR. Many thanks in advance.
1 parent 1584639 commit ce6d77b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/fsharp/language-reference/generics/constraints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ There are several different constraints you can apply to limit the types that ca
2121
|----------|------|-----------|
2222
|Type Constraint|*type-parameter* :> *type*|The provided type must be equal to or derived from the type specified, or, if the type is an interface, the provided type must implement the interface.|
2323
|Null Constraint|*type-parameter* : null|The provided type must support the null literal. This includes all .NET object types but not F# list, tuple, function, class, record, or union types.|
24-
|Explicit Member Constraint|[(]*type-parameter* [or ... or *type-parameter*)] : (*member-signature *)|At least one of the type arguments provided must have a member that has the specified signature; not intended for common use. Members must be either explicitly defined on the type or part of an implicit type extension to be valid targets for an Explicit Member Constraint.|
24+
|Explicit Member Constraint|[(]*type-parameter* [or ... or *type-parameter*)] : (*member-signature*)|At least one of the type arguments provided must have a member that has the specified signature; not intended for common use. Members must be either explicitly defined on the type or part of an implicit type extension to be valid targets for an Explicit Member Constraint.|
2525
|Constructor Constraint|*type-parameter* : ( new : unit -> 'a )|The provided type must have a default constructor.|
2626
|Value Type Constraint|: struct|The provided type must be a .NET value type.|
2727
|Reference Type Constraint|: not struct|The provided type must be a .NET reference type.|

0 commit comments

Comments
 (0)