Skip to content

Commit 21969e1

Browse files
author
grammarian
committed
- Fix spelling mistakes
git-svn-id: https://svn.code.sf.net/p/objectlistview/code/cs/trunk@813 0bec5ed8-b53f-49e6-9885-ce7bc93af311
1 parent e9cc393 commit 21969e1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ObjectListView/Utilities/ColumnSelectionForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ protected void InitializeForm(ObjectListView olv, View view)
103103
private Dictionary<OLVColumn, bool> MapColumnToVisible = new Dictionary<OLVColumn, bool>();
104104

105105
/// <summary>
106-
/// The user has pressed OK. Do what's requied.
106+
/// The user has pressed OK. Do what's required.
107107
/// </summary>
108108
/// <param name="olv"></param>
109109
/// <param name="view"></param>

ObjectListView/Utilities/Generator.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public class Generator : IGenerator {
9393
#region Static convenience methods
9494

9595
/// <summary>
96-
/// Gets or sets the actual generator used by the static convinence methods.
96+
/// Gets or sets the actual generator used by the static convenience methods.
9797
/// </summary>
9898
/// <remarks>If you subclass the standard generator or implement IGenerator yourself,
9999
/// you should install an instance of your subclass/implementation here.</remarks>
@@ -462,7 +462,7 @@ public static void GenerateColumnMethods(OLVColumn column, Type type) {
462462
/// <remarks>
463463
/// <para>
464464
/// If you have an AspectName of "Owner.Address.Postcode", this will generate
465-
/// the equivilent of: <code>this.AspectGetter = delegate (object x) {
465+
/// the equivalent of: <code>this.AspectGetter = delegate (object x) {
466466
/// return x.Owner.Address.Postcode;
467467
/// }
468468
/// </code>
@@ -504,7 +504,7 @@ private static void GenerateIL(Type modelType, string path, ILGenerator il) {
504504
private static Type GeneratePart(ILGenerator il, Type type, string pathPart, bool isLastPart) {
505505
// TODO: Generate check for null
506506
507-
// Find the first member with the given nam that is a field, property, or parameter-less method
507+
// Find the first member with the given name that is a field, property, or parameter-less method
508508
List<MemberInfo> infos = new List<MemberInfo>(type.GetMember(pathPart));
509509
MemberInfo info = infos.Find(delegate(MemberInfo x) {
510510
if (x.MemberType == MemberTypes.Field || x.MemberType == MemberTypes.Property)

ObjectListView/Utilities/TypedObjectListView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ public TypedGroupKeyGetterDelegate GroupKeyGetter {
441441
/// <remarks>
442442
/// <para>
443443
/// If you have an AspectName of "Owner.Address.Postcode", this will generate
444-
/// the equivilent of: <code>this.AspectGetter = delegate (object x) {
444+
/// the equivalent of: <code>this.AspectGetter = delegate (object x) {
445445
/// return x.Owner.Address.Postcode;
446446
/// }
447447
/// </code>
@@ -500,7 +500,7 @@ private void GenerateIL(Type type, string path, ILGenerator il) {
500500
private Type GeneratePart(ILGenerator il, Type type, string pathPart, bool isLastPart) {
501501
// TODO: Generate check for null
502502

503-
// Find the first member with the given nam that is a field, property, or parameter-less method
503+
// Find the first member with the given name that is a field, property, or parameter-less method
504504
List<MemberInfo> infos = new List<MemberInfo>(type.GetMember(pathPart));
505505
MemberInfo info = infos.Find(delegate(MemberInfo x) {
506506
if (x.MemberType == MemberTypes.Field || x.MemberType == MemberTypes.Property)

0 commit comments

Comments
 (0)