From 5ced13eaee0e3c1e60edef0bd5838f28eeebc6ad Mon Sep 17 00:00:00 2001 From: mscharlock Date: Tue, 18 Sep 2018 10:00:30 -0700 Subject: [PATCH] adding a note on the test fcn --- types/custom-functions-runtime/custom-functions-runtime-tests.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/custom-functions-runtime/custom-functions-runtime-tests.ts b/types/custom-functions-runtime/custom-functions-runtime-tests.ts index 9d01cc64e6..335e5a1f95 100644 --- a/types/custom-functions-runtime/custom-functions-runtime-tests.ts +++ b/types/custom-functions-runtime/custom-functions-runtime-tests.ts @@ -1,3 +1,4 @@ +/* Note that this is a sample function for the purpose of running the below CustomFunctionsMappings test */ function ADD10(n: number) { return n + 10; }