Skip to content

Commit 6b46b8f

Browse files
committed
Fix typo.
1 parent 045fa0a commit 6b46b8f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/MsgPack/Serialization/SerializationContext.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public SerializationCompatibilityOptions CompatibilityOptions
176176
}
177177
}
178178

179-
private readonly DictionarySerlaizationOptions _didtiinarySerializationOptions;
179+
private readonly DictionarySerlaizationOptions _dictionarySerializationOptions;
180180

181181
/// <summary>
182182
/// Gets the dictionary(map) based serialization options.
@@ -192,7 +192,7 @@ public DictionarySerlaizationOptions DictionarySerlaizationOptions
192192
Contract.Ensures( Contract.Result<SerializationCompatibilityOptions>() != null );
193193
#endif // DEBUG
194194

195-
return this._didtiinarySerializationOptions;
195+
return this._dictionarySerializationOptions;
196196
}
197197
}
198198

@@ -560,7 +560,7 @@ public SerializationContext( PackerCompatibilityOptions packerCompatibilityOptio
560560
this._generationLock = new object();
561561
this._defaultCollectionTypes = new DefaultConcreteTypeRepository();
562562
this._serializerGeneratorOptions = new SerializerOptions();
563-
this._didtiinarySerializationOptions = new DictionarySerlaizationOptions();
563+
this._dictionarySerializationOptions = new DictionarySerlaizationOptions();
564564
}
565565

566566
internal bool ContainsSerializer( Type rootType )

0 commit comments

Comments
 (0)