fix(native): fix incredibly important typo in a comment

This commit is contained in:
Alisa Sireneva 2021-05-10 23:58:32 +03:00 committed by GitHub
commit 55e2a3ceb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@
#define NODE_GYP_MODULE_NAME crypto #define NODE_GYP_MODULE_NAME crypto
#endif #endif
// maybe i love macroses a bit too much // maybe i love macros a bit too much
#define CALL_ASSERT_OK(code) \ #define CALL_ASSERT_OK(code) \
status = code; \ status = code; \
@ -106,4 +106,4 @@ static napi_value Init(napi_env env, napi_value exports) {
return exports; return exports;
} }
NAPI_MODULE(NODE_GYP_MODULE_NAME, Init) NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)