docs(guide): fix some invalid javascript in directive documentation

Use double quotes to maintain consistency with other HTML
This commit is contained in:
Dylan Pyle 2013-02-14 13:00:53 -08:00 committed by Vojta Jina
parent d7e9ae1215
commit aa531d7bd1

View file

@ -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);