Fix typos in comment
authorKevin Sawicki <kevinsawicki@gmail.com>
Wed, 26 Apr 2017 16:09:42 +0000 (09:09 -0700)
committerKevin Sawicki <kevinsawicki@gmail.com>
Wed, 26 Apr 2017 16:09:42 +0000 (09:09 -0700)
lib/renderer/window-setup.js

index 87a31f06240b07eb6c9ae98fc6813d0a767c0f09..5ccb6fec463d149e68c35531d0f1d211d5c4bf43 100644 (file)
@@ -32,9 +32,9 @@ const resolveURL = function (url) {
   return a.href
 }
 
-// Use this method to ensure value expected as string in the main process
-// are convertible to string in the renderer process. This ensures exceptions
-// converting values to string are thrown in this process.
+// Use this method to ensure values expected as strings in the main process
+// are convertible to strings in the renderer process. This ensures exceptions
+// converting values to strings are thrown in this process.
 const toString = (value) => {
   return value != null ? `${value}` : value
 }