Skip to content

Commit 6be41cf

Browse files
Adjust GetParameterSpan xml comment
1 parent 4c75002 commit 6be41cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/NHibernate/Impl/FilterImpl.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,12 @@ public object GetParameter(string name)
102102
}
103103

104104
/// <summary>
105-
/// Get a span of collection parameter by name. <see langword="null" /> if the parameter is not a collectino or
106-
/// there is no such parameter exist.
105+
/// Get the span of a value list parameter by name. <see langword="null" /> if the parameter is not a value list
106+
/// or if there is no such parameter.
107107
/// </summary>
108108
/// <param name="name">The parameter name.</param>
109-
/// <returns>The parameter span, or <see langword="null" /> if the parameter is not a collectino or
110-
/// there is no such parameter exist.</returns>
109+
/// <returns>The parameter span, or <see langword="null" /> if the parameter is not a value list or
110+
/// if there is no such parameter.</returns>
111111
public int? GetParameterSpan(string name)
112112
{
113113
return _parameterSpans.TryGetValue(name, out var result) ? result : default(int?);

0 commit comments

Comments
 (0)