1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-06 07:53:41 +08:00

Fix typos in comments

This commit is contained in:
Bartłomiej Dach
2021-01-28 22:36:07 +01:00
Unverified
parent 90a82f986b
commit 386f9f7842
2 changed files with 2 additions and 2 deletions
@@ -73,7 +73,7 @@ namespace osu.Game.Online.Multiplayer
builder.AddMessagePackProtocol();
else
{
// eventuall we will precompile resolvers for messagepack, but this isn't working currently
// eventually we will precompile resolvers for messagepack, but this isn't working currently
// see https://github.com/neuecc/MessagePack-CSharp/issues/780#issuecomment-768794308.
builder.AddNewtonsoftJsonProtocol(options => { options.PayloadSerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore; });
}
@@ -124,7 +124,7 @@ namespace osu.Game.Online.Spectator
builder.AddMessagePackProtocol();
else
{
// eventuall we will precompile resolvers for messagepack, but this isn't working currently
// eventually we will precompile resolvers for messagepack, but this isn't working currently
// see https://github.com/neuecc/MessagePack-CSharp/issues/780#issuecomment-768794308.
builder.AddNewtonsoftJsonProtocol(options => { options.PayloadSerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore; });
}