Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3b8f312
Update tutorial01.md: Specify code language
imba-tjd Aug 30, 2018
29c68bd
Update tutorial01_answer.md: 告警 -> 警告
imba-tjd Aug 30, 2018
e3ccddf
Update tutorial02/leptjson.h: Fix indentation
imba-tjd Aug 31, 2018
d3bfdb6
Update tutorial02.md: Fix blank space
imba-tjd Aug 31, 2018
75c263a
Update tutorial01.md: Add wiki reference for 副作用
imba-tjd Aug 31, 2018
cc60136
Update readme.md: Fix typo && Add a period
imba-tjd Sep 2, 2018
c80b095
Update tutorial02_answer.md: 负数 -> 负号
imba-tjd Sep 3, 2018
858db91
Update All: Rplace http urls with https urls
imba-tjd Sep 3, 2018
be5fcec
Update tutorial02_answer.md: Specify code language
imba-tjd Sep 3, 2018
bb44841
Update tutorial03.md: Fix typo && Add English of 堆栈
imba-tjd Sep 3, 2018
bb48a21
Update tutorial01.md: Add serial number for headers
imba-tjd Sep 3, 2018
7157a34
Update tutorial02.md: Fix headers level
imba-tjd Sep 3, 2018
ca12f4c
Update All: Fix TOC
imba-tjd Sep 3, 2018
71812e5
Update tutorial04_answer.md: 辨法 -> 办法
imba-tjd Sep 7, 2018
51f0c88
Update Unit Test: Fix solidus position for test_parse_invalid_unicode…
imba-tjd Sep 7, 2018
2dbaf73
Update All: Fix TOC
imba-tjd Sep 8, 2018
c84fe9e
Update tutorial07.md: Remove a space
imba-tjd Sep 9, 2018
5e5b138
Update tutorial05_answer.md: Specify code language
imba-tjd Sep 9, 2018
44557b1
Update tutorial07_answer.md: Fix typo
imba-tjd Sep 9, 2018
c5878c1
Update tutorial04: 是 8 位字节 -> 为 8 位(1 字节)
imba-tjd Oct 15, 2018
a3af0e1
Update tutorial01.md: Fix RFC 7159 link
imba-tjd Oct 22, 2018
5dbd572
Update test.c
imba-tjd Nov 28, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update tutorial02/leptjson.h: Fix indentation
  • Loading branch information
imba-tjd authored Aug 31, 2018
commit e3ccddf021ae344ceb9407822e6c23407cccc3c4
2 changes: 1 addition & 1 deletion tutorial02/leptjson.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
typedef enum { LEPT_NULL, LEPT_FALSE, LEPT_TRUE, LEPT_NUMBER, LEPT_STRING, LEPT_ARRAY, LEPT_OBJECT } lept_type;

typedef struct {
double n;
double n;
lept_type type;
}lept_value;

Expand Down