Skip to content

Commit 6c97913

Browse files
Fix minor typo in object_lifetime_management.md
1 parent 89e62a9 commit 6c97913

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/object_lifetime_management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ for (int i = 0; i < LOOP_MAX; i++) {
6969
Napi::HandleScope scope(info.Env());
7070
std::string name = std::string("inner-scope") + std::to_string(i);
7171
Napi::Value newValue = Napi::String::New(info.Env(), name.c_str());
72-
// do something with neValue
72+
// do something with newValue
7373
};
7474
```
7575

0 commit comments

Comments
 (0)