Skip to content

Commit 5a4fcab

Browse files
authored
Update tutorial07.md
1 parent 30ba5b6 commit 5a4fcab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tutorial07/tutorial07.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ static int lept_stringify_value(lept_context* c, const lept_value* v) {
134134
135135
~~~c
136136
case LEPT_NUMBER:
137-
c->top -= 32 - sprintf(lept_context_push(c, 32), "%.17g", v->u.n); break;
137+
c->top -= 32 - sprintf(lept_context_push(c, 32), "%.17g", v->u.n);
138+
break;
138139
~~~
139140

140141
## 5. 总结与练习

0 commit comments

Comments
 (0)