Skip to content

Commit 5a4823e

Browse files
authored
Fix reference errors in XML comments (#3519)
1 parent 1605507 commit 5a4823e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/NHibernate/Criterion/MatchMode.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public override string ToString()
9292
private class ExactMatchMode : MatchMode
9393
{
9494
/// <summary>
95-
/// Initialize a new instance of the <see cref="ExactMatchMode" /> class.
95+
/// Initialize a new instance of the <see cref="MatchMode.ExactMatchMode" /> class.
9696
/// </summary>
9797
public ExactMatchMode() : base(0, "EXACT")
9898
{
@@ -115,7 +115,7 @@ public override string ToMatchString(string pattern)
115115
private class StartMatchMode : MatchMode
116116
{
117117
/// <summary>
118-
/// Initialize a new instance of the <see cref="StartMatchMode" /> class.
118+
/// Initialize a new instance of the <see cref="MatchMode.StartMatchMode" /> class.
119119
/// </summary>
120120
public StartMatchMode() : base(1, "START")
121121
{
@@ -138,7 +138,7 @@ public override string ToMatchString(string pattern)
138138
private class EndMatchMode : MatchMode
139139
{
140140
/// <summary>
141-
/// Initialize a new instance of the <see cref="EndMatchMode" /> class.
141+
/// Initialize a new instance of the <see cref="MatchMode.EndMatchMode" /> class.
142142
/// </summary>
143143
public EndMatchMode() : base(2, "END")
144144
{
@@ -162,7 +162,7 @@ public override string ToMatchString(string pattern)
162162
private class AnywhereMatchMode : MatchMode
163163
{
164164
/// <summary>
165-
/// Initialize a new instance of the <see cref="AnywhereMatchMode" /> class.
165+
/// Initialize a new instance of the <see cref="MatchMode.AnywhereMatchMode" /> class.
166166
/// </summary>
167167
public AnywhereMatchMode() : base(3, "ANYWHERE")
168168
{
@@ -179,4 +179,4 @@ public override string ToMatchString(string pattern)
179179
}
180180
}
181181
}
182-
}
182+
}

src/NHibernate/Linq/Visitors/PreTransformationParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace NHibernate.Linq.Visitors
88
{
99
/// <summary>
10-
/// Contains the information needed by <see cref="NhRelinqQueryParser.PreTransform"/> to perform an early transformation.
10+
/// Contains the information needed by <see cref="NhRelinqQueryParser.PreTransform(System.Linq.Expressions.Expression, PreTransformationParameters)"/> to perform an early transformation.
1111
/// </summary>
1212
public class PreTransformationParameters
1313
{

src/NHibernate/Linq/Visitors/PreTransformationResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace NHibernate.Linq.Visitors
66
{
77
/// <summary>
8-
/// The result of <see cref="NhRelinqQueryParser.PreTransform"/> method.
8+
/// The result of <see cref="NhRelinqQueryParser.PreTransform(System.Linq.Expressions.Expression, PreTransformationParameters)"/> method.
99
/// </summary>
1010
public class PreTransformationResult
1111
{

src/NHibernate/Multi/LinqBatchItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private static LinqBatchItem<TResult> GetForQuery<TResult>(IQueryable query, Exp
4343
}
4444

4545
/// <summary>
46-
/// Create instance via <see cref="LinqBatchItem.Create"/> methods
46+
/// Create instance via <see cref="LinqBatchItem.Create{T,TResult}"/> methods
4747
/// </summary>
4848
/// <typeparam name="T">Result type</typeparam>
4949
public partial class LinqBatchItem<T> : QueryBatchItem<T>, ILinqBatchItem

0 commit comments

Comments
 (0)