From 9c7d4bd0f339ccef5eccf18a8ef57d6588f72bef Mon Sep 17 00:00:00 2001 From: "Pooja D.P" Date: Tue, 13 Oct 2020 08:42:51 +0400 Subject: [PATCH] doc: use case-sensitive in the example PR-URL: https://github.com/nodejs/node/pull/35624 Reviewed-By: Richard Lau Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca Reviewed-By: Gireesh Punathil Reviewed-By: Trivikram Kamat --- doc/api/process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index 3f1cd07cda67b0..61c4c68748a4f3 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1887,7 +1887,7 @@ present. ```js const data = process.report.getReport(); -console.log(data.header.nodeJsVersion); +console.log(data.header.nodejsVersion); // Similar to process.report.writeReport() const fs = require('fs');