diff --git a/PRIMER.md b/PRIMER.md
index 3b76f218f6..51c8c51f79 100644
--- a/PRIMER.md
+++ b/PRIMER.md
@@ -3,7 +3,7 @@
Below is a description of current Polymer features, followed by individual feature guides.
-See [the full Polymer.Base API documentation](http://polymer.github.io/polymer/) for details on specific methods and properties.
+See [the full Polymer.Base API documentation](http://polymer.github.io/polymer/) for details on specific methods and properties.
**Basic Custom Element sugaring**
@@ -1085,17 +1085,10 @@ Polymer({
Properties of the custom element may be bound into text content or properties of local DOM elements using binding annotations in the template.
-To bind to textContent, the binding annotation must currently span the entire content of the tag:
-
```html
-
- First: {{first}}
- Last: {{last}}
-
-
First: {{first}}
Last: {{last}}