Skip to content

Commit

Permalink
Merge pull request nodejs#692 from kelvinhammond/patch-1
Browse files Browse the repository at this point in the history
Fix minor typo in object_lifetime_management.md
  • Loading branch information
NickNaso committed Mar 30, 2020
2 parents 623e876 + 6c97913 commit 2c3d5df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/object_lifetime_management.md
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 2c3d5df

Please sign in to comment.