You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2012/08/18 00:43:58 UTC

[3/5] git commit: Fix missing quote in example HTML

Fix missing quote in example HTML


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/4f8a8647
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/4f8a8647
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/4f8a8647

Branch: refs/heads/5.4-js-rewrite
Commit: 4f8a8647467d5a470279ee2dbcb874a1a03511b2
Parents: ab0646f
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Fri Aug 17 15:27:53 2012 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Fri Aug 17 15:27:53 2012 -0700

----------------------------------------------------------------------
 .../META-INF/modules/core/builder.coffee           |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/4f8a8647/tapestry-core/src/main/coffeescript/META-INF/modules/core/builder.coffee
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/coffeescript/META-INF/modules/core/builder.coffee b/tapestry-core/src/main/coffeescript/META-INF/modules/core/builder.coffee
index 2037dfc..eb73e03 100644
--- a/tapestry-core/src/main/coffeescript/META-INF/modules/core/builder.coffee
+++ b/tapestry-core/src/main/coffeescript/META-INF/modules/core/builder.coffee
@@ -26,7 +26,7 @@
 # a structure can quickly be specified. e.g. `builder "label.checkbox > input", type: "checkbox", " Remember me"`
 # would construct:
 #
-#     <label class="checkbox>
+#     <label class="checkbox">
 #        <input type="checkbox"> Remember me</input>
 #     </label>
 #