From a11d1be3fce91170f5e7441865b189a5e8334b86 Mon Sep 17 00:00:00 2001 From: Paul Kaplan Date: Tue, 5 Jun 2018 16:08:14 -0400 Subject: [PATCH] Fix comments --- src/virtual-machine.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/virtual-machine.js b/src/virtual-machine.js index 224d95e4d..1c9c2883d 100644 --- a/src/virtual-machine.js +++ b/src/virtual-machine.js @@ -1073,7 +1073,7 @@ class VirtualMachine extends EventEmitter { } /** - * Set a target variables value if it exists. Return whether it succeeded. + * Set a target's variable's value. Return whether it succeeded. * @param {!string} targetId ID of the target which owns the variable. * @param {!string} variableId ID of the variable to set. * @param {!*} value The new value of that variable. @@ -1092,7 +1092,7 @@ class VirtualMachine extends EventEmitter { } /** - * Set a target variables value if it exists. Return whether it succeeded. + * Get a target's variable's value. Return null if the target or variable does not exist. * @param {!string} targetId ID of the target which owns the variable. * @param {!string} variableId ID of the variable to set. * @returns {?*} The value of the variable, or null if it could not be looked up.