From 0684498efcde49315d20a26bb9629332e6621360 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Fri, 12 Apr 2019 16:29:04 -0700 Subject: [PATCH] Fix SignalR HubProtocol spec typo (#9338) --- src/SignalR/docs/specs/HubProtocol.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SignalR/docs/specs/HubProtocol.md b/src/SignalR/docs/specs/HubProtocol.md index d0a94886e4..a93c27e8cf 100644 --- a/src/SignalR/docs/specs/HubProtocol.md +++ b/src/SignalR/docs/specs/HubProtocol.md @@ -887,7 +887,7 @@ Below are some sample type mappings between JSON types and the .NET client. This | .NET Type | JSON Type | MsgPack format family | | ----------------------------------------------- | ---------------------------- |---------------------------| | `System.Byte`, `System.UInt16`, `System.UInt32` | `Number` | `positive fixint`, `uint` | -| `System.SByte`, `System.Int16`, `System.Int32` | `Number` | `fixit`, `int` | +| `System.SByte`, `System.Int16`, `System.Int32` | `Number` | `fixint`, `int` | | `System.UInt64` | `Number` | `positive fixint`, `uint` | | `System.Int64` | `Number` | `fixint`, `int` | | `System.Single` | `Number` | `float` |