From 3170a6969759c796300ca14b1a282be8c877df9f Mon Sep 17 00:00:00 2001 From: Darshan Sen Date: Fri, 16 Apr 2021 23:50:48 +0530 Subject: [PATCH] doc: correct struct definition (#969) --- doc/version_management.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/version_management.md b/doc/version_management.md index 6fe51196a..1cdc48321 100644 --- a/doc/version_management.md +++ b/doc/version_management.md @@ -25,8 +25,7 @@ information is stored in the `napi_node_version` structure that is defined as shown below: ```cpp -using napi_node_version = -struct { +typedef struct { uint32_t major; uint32_t minor; uint32_t patch;