Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(611)

Unified Diff: pkg/custom_element/lib/custom_element.dart

Issue 23441054: one-liners for a few polymer-related libraries (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/mdv/lib/mdv.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/custom_element/lib/custom_element.dart
diff --git a/pkg/custom_element/lib/custom_element.dart b/pkg/custom_element/lib/custom_element.dart
index 2a13fda947514dc3b31f94e4d2ab17c72c6dcc9e..d3bf02f1d27104b8e5c4de0a35aad79934aa4d8f 100644
--- a/pkg/custom_element/lib/custom_element.dart
+++ b/pkg/custom_element/lib/custom_element.dart
@@ -3,10 +3,17 @@
// BSD-style license that can be found in the LICENSE file.
/**
- * Custom Elements let authors define their own elements. Authors associate code
- * with custom tag names, and then use those custom tag names as they would any
- * standard tag. See <www.polymer-project.org/platform/custom-elements.html>
- * for more information.
+ * Custom DOM elements.
+ *
+ * This library provides access to the Polymer project's
+ * [Custom Elements]
+ * (http://www.polymer-project.org/platform/custom-elements.html)
+ * API, which lets you define your own elements. With custom elements, you
+ * associate code with custom tag names, and then use those custom tag names
+ * as you would any standard tag. For more information, see the
+ * [Polymer.dart homepage](https://www.dartlang.org/polymer-dart/) and its
+ * [custom element example]
+ * (https://www.dartlang.org/polymer-dart/#custom-elements).
*/
library custom_element;
« no previous file with comments | « no previous file | pkg/mdv/lib/mdv.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698