From e6e751abd3cd785f02b3f691f52d1a4db00afdb8 Mon Sep 17 00:00:00 2001 From: Alexander Shalamov Date: Thu, 20 Jun 2019 09:07:01 +0300 Subject: [darwin] Update documentation text for enum array value --- platform/darwin/scripts/generate-style-code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform/darwin/scripts/generate-style-code.js') diff --git a/platform/darwin/scripts/generate-style-code.js b/platform/darwin/scripts/generate-style-code.js index 18afa561e5..38066c9f43 100755 --- a/platform/darwin/scripts/generate-style-code.js +++ b/platform/darwin/scripts/generate-style-code.js @@ -409,7 +409,7 @@ global.propertyDoc = function (propertyName, property, layerType, kind) { doc += '* Any of the following constant string values:\n'; doc += Object.keys(property.values).map(value => ' * `' + value + '`: ' + property.values[value].doc).join('\n') + '\n'; } else if (property.type === 'array' && property.value === 'enum') { - doc += '* Constant array, whose each element is any of the following constant string values:\n'; + doc += '* Constant array, in which each element is any of the following constant string values:\n'; doc += Object.keys(property.values).map(value => ' * `' + value + '`: ' + property.values[value].doc).join('\n') + '\n'; } if (property.type === 'formatted') { -- cgit v1.2.1