Skip to content

Commit

Permalink
docs(guide): fix some invalid javascript in directive documentation
Browse files Browse the repository at this point in the history
Use double quotes to maintain consistency with other HTML
  • Loading branch information
dylanpyle authored and vojtajina committed Feb 14, 2013
1 parent 288b69a commit 7c6b1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/guide/directive.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Compilation of HTML happens in three phases:
var $compile = ...; // injected into your code
var scope = ...;

var html = '<div ng-bind='exp'></div>';
var html = '<div ng-bind="exp"></div>';

// Step 1: parse HTML into DOM element
var template = angular.element(html);
Expand Down

0 comments on commit 7c6b1e0

Please sign in to comment.