Skip to content

Commit b365014

Browse files
SimonCroppJimBobSquarePants
authored andcommitted
fix some spelling (SixLabors#962)
1 parent 3c52a05 commit b365014

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

tests/ImageSharp.Tests/GlobalSuppressions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-

2-
// This file is used by Code Analysis to maintain SuppressMessage
1+
2+
// This file is used by Code Analysis to maintain SuppressMessage
33
// attributes that are applied to this project.
4-
// Project-level suppressions either have no target or are given
4+
// Project-level suppressions either have no target or are given
55
// a specific target and scoped to a namespace, type, member, etc.
66

77
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Usage", "xUnit1026:Theory methods should use all of their parameters")]

tests/ImageSharp.Tests/ImageOperationTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Six Labors and contributors.
1+
// Copyright (c) Six Labors and contributors.
22
// Licensed under the Apache License, Version 2.0.
33

44
using System;
@@ -81,7 +81,7 @@ public void CloneCallsImageOperationsProvider_ListOfProcessors_WithDuplicateImag
8181
}
8282

8383
[Fact]
84-
public void CloneCallsImageOperationsProvider_Func_NotOnOrigional()
84+
public void CloneCallsImageOperationsProvider_Func_NotOnOriginal()
8585
{
8686
Image<Rgba32> returned = this.image.Clone(x => x.ApplyProcessor(this.processorDefinition));
8787
Assert.False(this.provider.HasCreated(this.image));
@@ -91,7 +91,7 @@ public void CloneCallsImageOperationsProvider_Func_NotOnOrigional()
9191
}
9292

9393
[Fact]
94-
public void CloneCallsImageOperationsProvider_ListOfProcessors_NotOnOrigional()
94+
public void CloneCallsImageOperationsProvider_ListOfProcessors_NotOnOriginal()
9595
{
9696
Image<Rgba32> returned = this.image.Clone(this.processorDefinition);
9797
Assert.False(this.provider.HasCreated(this.image));
@@ -110,4 +110,4 @@ public void ApplyProcessors_ListOfProcessors_AppliesAllProcessorsToOperation()
110110

111111
public void Dispose() => this.image.Dispose();
112112
}
113-
}
113+
}

tests/ImageSharp.Tests/TestFormat.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Six Labors and contributors.
1+
// Copyright (c) Six Labors and contributors.
22
// Licensed under the Apache License, Version 2.0.
33

44
using System;
@@ -212,7 +212,7 @@ public Image<TPixel> Decode<TPixel>(Configuration config, Stream stream) where T
212212
pixelType = typeof(TPixel)
213213
});
214214

215-
// TODO record this happend so we can verify it.
215+
// TODO record this happened so we can verify it.
216216
return this.testFormat.Sample<TPixel>();
217217
}
218218

0 commit comments

Comments
 (0)