Fix incorrect API in tutorial document.

This commit is contained in:
miloyip 2015-04-28 22:41:31 +08:00
parent 0be627430d
commit c1b66cc082
2 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ Checking | Obtaining
`bool IsNumber()` | N/A
`bool IsUint()` | `unsigned GetUint()`
`bool IsInt()` | `int GetInt()`
`bool IsUint64()` | `uint64_t GetUint()`
`bool IsUint64()` | `uint64_t GetUint64()`
`bool IsInt64()` | `int64_t GetInt64()`
`bool IsDouble()` | `double GetDouble()`

View File

@ -192,7 +192,7 @@ JSON只提供一种数值类型──Number。数字可以是整数或实数。R
`bool IsNumber()` | 不适用
`bool IsUint()` | `unsigned GetUint()`
`bool IsInt()` | `int GetInt()`
`bool IsUint64()` | `uint64_t GetUint()`
`bool IsUint64()` | `uint64_t GetUint64()`
`bool IsInt64()` | `int64_t GetInt64()`
`bool IsDouble()` | `double GetDouble()`