From 4e1fb826282ad702e784edc2746e587461dab23d Mon Sep 17 00:00:00 2001 From: Dave Wells Date: Wed, 11 Jun 2014 11:47:39 -0700 Subject: [PATCH] docs(errors/$compile/nonassing): fix reversed attribute and scope property names --- docs/content/error/$compile/nonassign.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/error/$compile/nonassign.ngdoc b/docs/content/error/$compile/nonassign.ngdoc index 7486ba70..3ca3b0f9 100644 --- a/docs/content/error/$compile/nonassign.ngdoc +++ b/docs/content/error/$compile/nonassign.ngdoc @@ -16,7 +16,7 @@ myModule.directive('myDirective', function factory() { return { ... scope: { - 'bind': '=localValue' + localValue: '=bind' } ... }