Skip to content

Commit 15c1607

Browse files
committed
fix paramrefs for System.Linq
1 parent e9678a9 commit 15c1607

File tree

5 files changed

+142
-144
lines changed

5 files changed

+142
-144
lines changed

xml/System.Linq.Expressions/Expression.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2272,7 +2272,7 @@ The following code example shows how to create an expression that adds two integ
22722272

22732273
-or-
22742274

2275-
<paramref name="expression" />.Type is not assignable to the type of the field or property that <paramref name="member" /> represents.</exception>
2275+
<paramref name="expression" />.Type is not assignable to the type of the field or property that the member represents.</exception>
22762276
</Docs>
22772277
</Member>
22782278
<MemberGroup MemberName="Block">
@@ -10656,19 +10656,19 @@ As with `Func`, the last argument is the return type. It can be set to `System.V
1065610656

1065710657
One or more elements in <paramref name="parameters" /> are <see langword="null" />.</exception>
1065810658
<exception cref="T:System.ArgumentException">
10659-
<paramref name="TDelegate" /> is not a delegate type.
10659+
<typeparamref name="TDelegate" /> /> is not a delegate type.
1066010660

1066110661
-or-
1066210662

10663-
<paramref name="body" />.Type represents a type that is not assignable to the return type of <paramref name="TDelegate" />.
10663+
<paramref name="body" />.Type represents a type that is not assignable to the return type of <typeparamref name="TDelegate" /> />.
1066410664

1066510665
-or-
1066610666

10667-
<paramref name="parameters" /> does not contain the same number of elements as the list of parameters for <paramref name="TDelegate" />.
10667+
<paramref name="parameters" /> does not contain the same number of elements as the list of parameters for <typeparamref name="TDelegate" /> />.
1066810668

1066910669
-or-
1067010670

10671-
The <see cref="P:System.Linq.Expressions.Expression.Type" /> property of an element of <paramref name="parameters" /> is not assignable from the type of the corresponding parameter type of <paramref name="TDelegate" />.</exception>
10671+
The <see cref="P:System.Linq.Expressions.Expression.Type" /> property of an element of <paramref name="parameters" /> is not assignable from the type of the corresponding parameter type of <typeparamref name="TDelegate" /> />.</exception>
1067210672
</Docs>
1067310673
</Member>
1067410674
<Member MemberName="Lambda&lt;TDelegate&gt;">
@@ -10758,19 +10758,19 @@ As with `Func`, the last argument is the return type. It can be set to `System.V
1075810758

1075910759
One or more elements in <paramref name="parameters" /> are <see langword="null" />.</exception>
1076010760
<exception cref="T:System.ArgumentException">
10761-
<paramref name="TDelegate" /> is not a delegate type.
10761+
<typeparamref name="TDelegate" /> /> is not a delegate type.
1076210762

1076310763
-or-
1076410764

10765-
<paramref name="body" />.Type represents a type that is not assignable to the return type of <paramref name="TDelegate" />.
10765+
<paramref name="body" />.Type represents a type that is not assignable to the return type of <typeparamref name="TDelegate" /> />.
1076610766

1076710767
-or-
1076810768

10769-
<paramref name="parameters" /> does not contain the same number of elements as the list of parameters for <paramref name="TDelegate" />.
10769+
<paramref name="parameters" /> does not contain the same number of elements as the list of parameters for <typeparamref name="TDelegate" /> />.
1077010770

1077110771
-or-
1077210772

10773-
The <see cref="P:System.Linq.Expressions.Expression.Type" /> property of an element of <paramref name="parameters" /> is not assignable from the type of the corresponding parameter type of <paramref name="TDelegate" />.</exception>
10773+
The <see cref="P:System.Linq.Expressions.Expression.Type" /> property of an element of <paramref name="parameters" /> is not assignable from the type of the corresponding parameter type of <typeparamref name="TDelegate" /> />.</exception>
1077410774
</Docs>
1077510775
</Member>
1077610776
<Member MemberName="Lambda&lt;TDelegate&gt;">

0 commit comments

Comments
 (0)