Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
原文第 121 行:只需要生成的时候直接写进 `c` 里的 推 栈
修改:               只需要生成的时候直接写进 `c` 里的 堆 栈
  • Loading branch information
rustberry authored Jul 20, 2018
1 parent 4fb2b70 commit ce96b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorial07/tutorial07.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ static int lept_stringify_value(lept_context* c, const lept_value* v) {
break;
~~~

但这样需要在 `PUTS()` 中做一次 `memcpy()`,实际上我们可以避免这次复制,只需要生成的时候直接写进 `c` 里的推栈,然后再按实际长度调查 `c->top`
但这样需要在 `PUTS()` 中做一次 `memcpy()`,实际上我们可以避免这次复制,只需要生成的时候直接写进 `c` 里的堆栈,然后再按实际长度调查 `c->top`

~~~c
case LEPT_NUMBER:
Expand Down

0 comments on commit ce96b9a

Please sign in to comment.