From 608480574d7ed13a810c1840ec36135979cc1b63 Mon Sep 17 00:00:00 2001 From: Yoshiki Shibukawa Date: Thu, 11 Apr 2013 08:04:48 -0700 Subject: [PATCH 1/2] Fix sample code I think it should call method instead of just referencing. --- Jake/articles/tags-augments | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jake/articles/tags-augments b/Jake/articles/tags-augments index f6e49f83..608a6117 100644 --- a/Jake/articles/tags-augments +++ b/Jake/articles/tags-augments @@ -57,7 +57,7 @@ Duck.prototype.speak = function() { var d = new Duck(); d.speak(); // Quack! d.alive = false; // dead duck? -d.speak; +d.speak(); {{/example}}

@@ -71,4 +71,4 @@ d.speak;

  • @mixin
  • @mixes
  • @borrows
  • - \ No newline at end of file + From d0ab0b4a87453c0eeb66cb647c15b50880b3224f Mon Sep 17 00:00:00 2001 From: Yoshiki Shibukawa Date: Thu, 11 Apr 2013 08:33:34 -0700 Subject: [PATCH 2/2] run jake and update tags-augments.html --- tags-augments.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tags-augments.html b/tags-augments.html index a89f8ef5..a3094a41 100644 --- a/tags-augments.html +++ b/tags-augments.html @@ -233,7 +233,7 @@

    Examples

    var d = new Duck(); d.speak(); // Quack! d.alive = false; // dead duck? -d.speak; +d.speak(); @@ -249,6 +249,7 @@

    See Also

  • @mixes
  • @borrows
  • +