summaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2012-08-10 22:07:49 -0500
committerKyle Kaminski <kyle@kkaminsk.com>2012-08-10 22:07:49 -0500
commit6fd7f7e76a9dee93d2440b1a0e57c2d081046344 (patch)
tree5631d98000832d16af5d5dd69f6f7d5f621dab2f /samples
parent4736d0ea965dbcc1cfb71161e0cf62d43e10b159 (diff)
downloadfubar-6fd7f7e76a9dee93d2440b1a0e57c2d081046344.tar.gz
fubar-6fd7f7e76a9dee93d2440b1a0e57c2d081046344.tar.bz2
fubar-6fd7f7e76a9dee93d2440b1a0e57c2d081046344.zip
typos and shit
Diffstat (limited to 'samples')
-rw-r--r--samples/call_method.js4
-rw-r--r--samples/func_ret_func.js2
2 files changed, 3 insertions, 3 deletions
diff --git a/samples/call_method.js b/samples/call_method.js
index a227562..0197723 100644
--- a/samples/call_method.js
+++ b/samples/call_method.js
@@ -1,6 +1,6 @@
/* shows how to use call() and apply()
- * essentially give a method called .bar(), instead of calling it directly with
- * use of dobule parens we append .call(instance [, arg1, arg2, ...]), where
+ * essentially given a method called .bar(), instead of calling it directly with
+ * use of double parens we append .call(instance [, arg1, arg2, ...]), where
* apply takes array of args
*/
diff --git a/samples/func_ret_func.js b/samples/func_ret_func.js
index b4b5a09..2decac3 100644
--- a/samples/func_ret_func.js
+++ b/samples/func_ret_func.js
@@ -8,5 +8,5 @@ function retFunction(foo) {
}
var foo = new retFunction('hello, world!');
-foo.call(foo);
+foo.call(foo); /* call the bar() with no args in foo object */