From 1f85ea979ccef3c52ec4ca3263306e527b625498 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Mon, 3 Dec 2018 17:15:45 +0100 Subject: tools: capitalize sentences This adds the `capitalized-comments` eslint rule to verify that actual sentences use capital letters as starting letters. It ignores special words and all lines below 62 characters. PR-URL: https://github.com/nodejs/node/pull/24808 Reviewed-By: Sam Ruby Reviewed-By: Trivikram Kamat Reviewed-By: Ujjwal Sharma Reviewed-By: Sakthipriyan Vairamani --- test/js-native-api/test_general/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/js-native-api/test_general') diff --git a/test/js-native-api/test_general/test.js b/test/js-native-api/test_general/test.js index a8548bcdf9..7a65297cd3 100644 --- a/test/js-native-api/test_general/test.js +++ b/test/js-native-api/test_general/test.js @@ -48,7 +48,7 @@ assert.strictEqual(test_general.testGetVersion(), 3); assert.strictEqual(test_general.testNapiTypeof(val), typeof val); }); -// since typeof in js return object need to validate specific case +// Since typeof in js return object need to validate specific case // for null assert.strictEqual(test_general.testNapiTypeof(null), 'null'); -- cgit v1.2.3