Skip to content

Commit 10c25cf

Browse files
committed
Typo
1 parent 314eeec commit 10c25cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tutorial05_answer/leptjson.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ static int lept_parse_array(lept_context* c, lept_value* v) {
220220
break;
221221
}
222222
}
223-
/* Pop and free values on stack */
223+
/* Pop and free values on the stack */
224224
for (i = 0; i < size; i++)
225225
lept_free((lept_value*)lept_context_pop(c, sizeof(lept_value)));
226226
return ret;

tutorial05_answer/tutorial05_answer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ static int lept_parse_array(lept_context* c, lept_value* v) {
155155
break;
156156
}
157157
}
158-
/* Pop and free values on stack */
158+
/* Pop and free values on the stack */
159159
for (i = 0; i < size; i++)
160160
lept_free((lept_value*)lept_context_pop(c, sizeof(lept_value)));
161161
return ret;

0 commit comments

Comments
 (0)