Fix SignalR HubProtocol spec typo (#9338)

This commit is contained in:
Andrew Arnott 2019-04-12 16:29:04 -07:00 committed by Mikael Mengistu
parent a54646f9a5
commit 0684498efc
1 changed files with 1 additions and 1 deletions

View File

@ -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` |