| Index: pkg/polymer/lib/src/instance.dart
|
| diff --git a/pkg/polymer/lib/src/instance.dart b/pkg/polymer/lib/src/instance.dart
|
| index 5abafe03bafc16fc9d31ec8fabe770a4b59eab8f..96c8698d2395b19f69a626cf01071d8172a0c8b1 100644
|
| --- a/pkg/polymer/lib/src/instance.dart
|
| +++ b/pkg/polymer/lib/src/instance.dart
|
| @@ -626,14 +626,15 @@ abstract class Polymer implements Element, Observable, NodeBindExtension {
|
| _observers = null;
|
| }
|
|
|
| - /// Bind a [property] in this object to a [path] in model. *Note* in Dart it
|
| + /// Bind the [name] property in this element to [bindable]. *Note* in Dart it
|
| /// is necessary to also define the field:
|
| ///
|
| /// var myProperty;
|
| ///
|
| /// ready() {
|
| /// super.ready();
|
| - /// bindProperty(#myProperty, this, 'myModel.path.to.otherProp');
|
| + /// bindProperty(#myProperty,
|
| + /// new PathObserver(this, 'myModel.path.to.otherProp'));
|
| /// }
|
| Bindable bindProperty(Symbol name, Bindable bindable) {
|
| // Dart note: normally we only reach this code when we know it's a
|
|
|