Skip to content

Commit bf4909e

Browse files
authored
Merge pull request #241 from avrum/master
Fixing typo in the Packer functions description
2 parents dca72f3 + 63165e1 commit bf4909e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/MsgPack/Packer.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ protected Packer( PackerCompatibilityOptions compatibilityOptions )
130130
}
131131

132132
/// <summary>
133-
/// Create standard Safe <see cref="Packer"/> instancde wrapping specified <see cref="Stream"/> with <see cref="DefaultCompatibilityOptions"/>.
133+
/// Create standard Safe <see cref="Packer"/> instance wrapping specified <see cref="Stream"/> with <see cref="DefaultCompatibilityOptions"/>.
134134
/// </summary>
135135
/// <param name="stream"><see cref="Stream"/> object. This stream will be closed when <see cref="Packer.Dispose(Boolean)"/> is called.</param>
136136
/// <returns>Safe <see cref="Packer"/>. This will not be null.</returns>
@@ -145,7 +145,7 @@ public static Packer Create( Stream stream )
145145
}
146146

147147
/// <summary>
148-
/// Create standard Safe <see cref="Packer"/> instancde wrapping specified <see cref="Stream"/> with specified <see cref="PackerCompatibilityOptions"/>.
148+
/// Create standard Safe <see cref="Packer"/> instance wrapping specified <see cref="Stream"/> with specified <see cref="PackerCompatibilityOptions"/>.
149149
/// </summary>
150150
/// <param name="stream"><see cref="Stream"/> object. This stream will be closed when <see cref="Packer.Dispose(Boolean)"/> is called.</param>
151151
/// <param name="compatibilityOptions">A <see cref="PackerCompatibilityOptions"/> which specifies compatibility options.</param>
@@ -161,7 +161,7 @@ public static Packer Create( Stream stream, PackerCompatibilityOptions compatibi
161161
}
162162

163163
/// <summary>
164-
/// Create standard Safe <see cref="Packer"/> instancde wrapping specified <see cref="Stream"/> with <see cref="DefaultCompatibilityOptions"/>.
164+
/// Create standard Safe <see cref="Packer"/> instance wrapping specified <see cref="Stream"/> with <see cref="DefaultCompatibilityOptions"/>.
165165
/// </summary>
166166
/// <param name="stream"><see cref="Stream"/> object.</param>
167167
/// <param name="ownsStream">
@@ -180,7 +180,7 @@ public static Packer Create( Stream stream, bool ownsStream )
180180
}
181181

182182
/// <summary>
183-
/// Create standard Safe <see cref="Packer"/> instancde wrapping specified <see cref="Stream"/> with specified <see cref="PackerCompatibilityOptions"/>.
183+
/// Create standard Safe <see cref="Packer"/> instance wrapping specified <see cref="Stream"/> with specified <see cref="PackerCompatibilityOptions"/>.
184184
/// </summary>
185185
/// <param name="stream"><see cref="Stream"/> object.</param>
186186
/// <param name="compatibilityOptions">A <see cref="PackerCompatibilityOptions"/> which specifies compatibility options.</param>
@@ -200,7 +200,7 @@ public static Packer Create( Stream stream, PackerCompatibilityOptions compatibi
200200
}
201201

202202
/// <summary>
203-
/// Create standard Safe <see cref="Packer"/> instancde wrapping specified <see cref="Stream"/> with specified <see cref="PackerCompatibilityOptions"/>.
203+
/// Create standard Safe <see cref="Packer"/> instance wrapping specified <see cref="Stream"/> with specified <see cref="PackerCompatibilityOptions"/>.
204204
/// </summary>
205205
/// <param name="stream"><see cref="Stream"/> object.</param>
206206
/// <param name="compatibilityOptions">A <see cref="PackerCompatibilityOptions"/> which specifies compatibility options.</param>

0 commit comments

Comments
 (0)