Skip to content

Commit

Permalink
Fix typo "repace"
Browse files Browse the repository at this point in the history
  • Loading branch information
jnyrup committed Sep 6, 2019
1 parent 379c6c4 commit 0bd2541
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/protobuf-net/Meta/ValueMember.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public bool IsPacked
}

/// <summary>
/// Indicates whether this field should *repace* existing values (the default is false, meaning *append*).
/// Indicates whether this field should *replace* existing values (the default is false, meaning *append*).
/// This option only applies to list/array data.
/// </summary>
public bool OverwriteList
Expand Down Expand Up @@ -772,4 +772,4 @@ public int Compare(ValueMember x, ValueMember y)
}
}
}
#endif
#endif
4 changes: 2 additions & 2 deletions src/protobuf-net/ProtoMemberAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public bool IsPacked
}

/// <summary>
/// Indicates whether this field should *repace* existing values (the default is false, meaning *append*).
/// Indicates whether this field should *replace* existing values (the default is false, meaning *append*).
/// This option only applies to list/array data.
/// </summary>
public bool OverwriteList
Expand Down Expand Up @@ -184,7 +184,7 @@ public enum MemberSerializationOptions
/// </summary>
DynamicType = 8,
/// <summary>
/// Indicates whether this field should *repace* existing values (the default is false, meaning *append*).
/// Indicates whether this field should *replace* existing values (the default is false, meaning *append*).
/// This option only applies to list/array data.
/// </summary>
OverwriteList = 16,
Expand Down

0 comments on commit 0bd2541

Please sign in to comment.