Skip to content

Commit 084ebde

Browse files
author
Peter Smulovics
committed
Small fix on xml comments
SVN: trunk@2293
1 parent c7e46fb commit 084ebde

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

src/NHibernate/Cfg/ResultSetMappingBinder.cs

+5-6
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,11 @@ private static IDictionary BindPropertyResults(
157157
}
158158
else
159159
{
160-
/**
161-
* Reorder properties
162-
* 1. get the parent property
163-
* 2. list all the properties following the expected one in the parent property
164-
* 3. calculate the lowest index and insert the property
165-
*/
160+
// Reorder properties
161+
// 1. get the parent property
162+
// 2. list all the properties following the expected one in the parent property
163+
// 3. calculate the lowest index and insert the property
164+
166165
if (pc == null)
167166
throw new MappingException("dotted notation in <return-join> or <load-collection> not yet supported");
168167
int dotIndex = name.LastIndexOf('.');

src/NHibernate/IFilter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface IFilter
3030
/// Set the named parameter's value list for this filter.
3131
/// </summary>
3232
/// <param name="name">The parameter's name.</param>
33-
/// <param name="values">The values to be applied.</param>
33+
/// <param name="value">The values to be applied.</param>
3434
/// <returns>This FilterImpl instance (for method chaining).</returns>
3535
IFilter SetParameter(string name, object value);
3636

src/NHibernate/ISessionFactory.cs

-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ public interface ISessionFactory
163163
/// <summary>
164164
/// Obtain a set of the names of all filters defined on this SessionFactory.
165165
/// </summary>
166-
/// <param name="filterName">The name of the filter for which to obtain the definition.</param>
167166
/// <return>The set of filter names.</return>
168167
ICollection DefinedFilterNames { get; }
169168

src/NHibernate/Impl/CollectionEntry.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ public class CollectionEntry : ICollectionSnapshot
7979
[NonSerialized]
8080
private bool ignore;
8181

82-
/// <summary>
83-
/// Indicates that the Collection has been fully initialized.
84-
/// </summary>
82+
// <summary>
83+
// Indicates that the Collection has been fully initialized.
84+
// </summary>
8585
//private bool initialized;
8686

8787
// For the fields below, "current" means the reference that was found

src/NHibernate/Impl/FilterImpl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public IFilter SetParameter(string name, object value)
7676
/// in conjunction with IN-style filter criteria.
7777
/// </summary>
7878
/// <param name="name">The parameter's name.</param>
79-
/// <param name="value">The values to be expanded into an SQL IN list.</param>
79+
/// <param name="values">The values to be expanded into an SQL IN list.</param>
8080
/// <returns>This FilterImpl instance (for method chaining).</returns>
8181
public IFilter SetParameterList(string name, ICollection values)
8282
{

src/NHibernate/Persister/Entity/IOuterJoinLoadable.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ namespace NHibernate.Persister.Entity
1313
/// </summary>
1414
public interface IOuterJoinLoadable : ILoadable, IJoinable
1515
{
16-
/// <summary>
17-
/// Get the name of the column used as a discriminator
18-
/// </summary>
16+
// <summary>
17+
// Get the name of the column used as a discriminator
18+
// </summary>
1919
//string DiscriminatorColumnName { get; }
2020

2121
/// <summary>

0 commit comments

Comments
 (0)