Skip to content

Commit

Permalink
Fix minor typo in object_lifetime_management.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinhammond committed Mar 28, 2020
1 parent 89e62a9 commit 6c97913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/object_lifetime_management.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ for (int i = 0; i < LOOP_MAX; i++) {
Napi::HandleScope scope(info.Env());
std::string name = std::string("inner-scope") + std::to_string(i);
Napi::Value newValue = Napi::String::New(info.Env(), name.c_str());
// do something with neValue
// do something with newValue
};
```

Expand Down

0 comments on commit 6c97913

Please sign in to comment.