Skip to content

Commit 6348fd0

Browse files
committed
Minor comment and spelling.
1 parent 09e7b72 commit 6348fd0

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/NHibernate.Test/Linq/ProjectionsTests.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,13 +439,20 @@ private string FormatName(string name, DateTime? lastLoginDate)
439439
return string.Format("User {0} logged in at {1}", name, lastLoginDate);
440440
}
441441

442+
443+
/// <summary>
444+
/// This mimic classes in System.Data.Services.Internal.
445+
/// </summary>
442446
class ExpandedWrapper<TExpandedElement>
443447
{
444448
public TExpandedElement ExpandedElement { get; set; }
445449
public string Description { get; set; }
446450
public string ReferenceDescription { get; set; }
447451
}
448452

453+
/// <summary>
454+
/// This mimic classes in System.Data.Services.Internal.
455+
/// </summary>
449456
class ExpandedWrapper<TExpandedElement, TProperty0> : ExpandedWrapper<TExpandedElement>
450457
{
451458
public TProperty0 ProjectedProperty0 { get; set; }

src/NHibernate.Test/MappingByCode/IntegrationTests/NH3105/Fixture.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace NHibernate.Test.MappingByCode.IntegrationTests.NH3105
99
public class Fixture
1010
{
1111
[Test]
12-
public void CanMapComponentAsIdWhenComnponentIsDeclaredInBaseClass()
12+
public void CanMapComponentAsIdWhenComponentIsDeclaredInBaseClass()
1313
{
1414
var mapper = new ModelMapper();
1515
mapper.Class<Entity>(rc =>
@@ -48,7 +48,7 @@ public void CanMapIdWhenIdIsDeclaredInBaseClass()
4848
}
4949

5050
[Test]
51-
public void CanMapComponentAsIdWhenComnponentIsDeclaredInClass()
51+
public void CanMapComponentAsIdWhenComponentIsDeclaredInClass()
5252
{
5353
var mapper = new ModelMapper();
5454
mapper.Class<EntityBase>(rc =>

0 commit comments

Comments
 (0)