From 0941501e4c549b65ea05b916e25eb9fcb8b90b86 Mon Sep 17 00:00:00 2001 From: Doug Ayers Date: Thu, 25 Jul 2019 03:52:11 -0500 Subject: [PATCH] update comments --- force-app/main/aura/LC_API/LC_APIHelper.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/force-app/main/aura/LC_API/LC_APIHelper.js b/force-app/main/aura/LC_API/LC_APIHelper.js index 7362e1a..dd1d4d3 100644 --- a/force-app/main/aura/LC_API/LC_APIHelper.js +++ b/force-app/main/aura/LC_API/LC_APIHelper.js @@ -40,8 +40,8 @@ License: BSD 3-Clause License /** * For internal use. - * Returns a promise waiting for the parent-child postmate handshake to complete - * then resolves with reference to the postmate child for making requests. + * Returns a promise waiting for the parent-child penpal handshake to complete + * then resolves with reference to the penpal child for making requests. */ getPenpalChild: function() { @@ -69,7 +69,7 @@ License: BSD 3-Clause License if ( child ) { - // parent-child postmate handshake now complete + // parent-child penpal handshake now complete clearInterval( timerId ); resolve( child ); @@ -95,7 +95,7 @@ License: BSD 3-Clause License /** * For internal use. - * Returns a promise waiting for the parent-child postmate request to complete + * Returns a promise waiting for the parent-child penpal request to complete * then resolves with response from the child iframe. */ makePenpalRequest: function( requestType, child, request ) {