From ed4c50d513f80435c93a1499d7ad8eb1452a4eba Mon Sep 17 00:00:00 2001 From: labtopia Date: Mon, 4 Jun 2018 12:45:32 -0700 Subject: [PATCH] Add description to code comments for HTTP --- functions/helloworld/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions/helloworld/index.js b/functions/helloworld/index.js index 32ceeb4263..026450a433 100644 --- a/functions/helloworld/index.js +++ b/functions/helloworld/index.js @@ -20,6 +20,8 @@ const Buffer = require('safe-buffer').Buffer; // [START functions_helloworld_get] /** * HTTP Cloud Function. + * This function is exported by index.js, and is executed when + * you make an HTTP request to the deployed function's endpoint. * * @param {Object} req Cloud Function request context. * @param {Object} res Cloud Function response context.