From d5096fede9cc6fc55babb26f929bc83d50d88cfa Mon Sep 17 00:00:00 2001 From: Jason Stallings Date: Sun, 13 Dec 2015 18:57:26 -0600 Subject: [PATCH] Updated comments to match code style. --- src/robotjs.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/robotjs.cc b/src/robotjs.cc index 45b1c90d..2b94f711 100644 --- a/src/robotjs.cc +++ b/src/robotjs.cc @@ -471,7 +471,7 @@ int GetFlagsFromValue(v8::Handle value, MMKeyFlags* flags) { if (!flags) return -1; - // Optionally allow an array of flag strings to be passed + //Optionally allow an array of flag strings to be passed. if (value->IsArray()) { v8::Handle a = v8::Handle::Cast(value); @@ -489,7 +489,7 @@ int GetFlagsFromValue(v8::Handle value, MMKeyFlags* flags) return 0; } - // If it's not an array, it should be a single string value + //If it's not an array, it should be a single string value. return GetFlagsFromString(value, flags); }