From 83f1c8db45d7ae8a4374125f86e54be824003fae Mon Sep 17 00:00:00 2001 From: mscharlock Date: Tue, 2 Oct 2018 13:10:30 -0700 Subject: [PATCH] fixes to long comment --- types/custom-functions-runtime/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/custom-functions-runtime/index.d.ts b/types/custom-functions-runtime/index.d.ts index cfef89b7e3..59b998b97d 100644 --- a/types/custom-functions-runtime/index.d.ts +++ b/types/custom-functions-runtime/index.d.ts @@ -10,7 +10,7 @@ Copyright (c) Microsoft Corporation */ /** - * Specific to Excel Custom Functions. Enables you to set key-value pairs where the key is the uppercase id of a function in the custom function's JSON metadata file and the value is the name of the function as defined in the function's JavaScript file. + * Specific to Excel Custom Functions. Enables you to set key-value pairs (uppercase id of a function in the custom function's JSON metadata file: the name of the function as defined in the function's JavaScript file). */ declare let CustomFunctionMappings: { [key: string]: Function }; /** @@ -37,4 +37,4 @@ declare namespace CustomFunctions { */ onCanceled: () => void; } -} \ No newline at end of file +}