diff --git a/packages/ember-views/lib/views/view.js b/packages/ember-views/lib/views/view.js index b35339afff4..81c7aff3f21 100644 --- a/packages/ember-views/lib/views/view.js +++ b/packages/ember-views/lib/views/view.js @@ -255,7 +255,7 @@ import ViewMixin from 'ember-views/mixins/view_support'; ``` If the return value of an `attributeBindings` monitored property is a boolean - the property's value will be set as a coerced string: + the attribute will be present or absent depending on the value: ```javascript MyTextInput = Ember.View.extend({ @@ -268,7 +268,7 @@ import ViewMixin from 'ember-views/mixins/view_support'; Will result in a view instance with an HTML representation of: ```html - + ``` `attributeBindings` can refer to computed properties: