Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed example in addon.md. #820

Merged
merged 3 commits into from
Oct 13, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fixed example in addon.md.
nempoBu4 authored Oct 8, 2020
commit f0a89db62ff253fd038e68517e6c508bff22d21b
4 changes: 2 additions & 2 deletions doc/addon.md
Original file line number Diff line number Diff line change
@@ -42,8 +42,8 @@ class ExampleAddon : public Napi::Addon<ExampleAddon> {
// We can also attach plain objects to `exports`, and instance methods as
// properties of those sub-objects.
InstanceValue("subObject", DefineProperties(Napi::Object::New(), {
InstanceMethod("decrement", &ExampleAddon::Decrement
})), napi_enumerable)
InstanceMethod("decrement", &ExampleAddon::Decrement)
}))
});
}
private: