From aa531d7bd18a6aec0b10f43ff261b0d1250a2ca4 Mon Sep 17 00:00:00 2001 From: Dylan Pyle Date: Thu, 14 Feb 2013 13:00:53 -0800 Subject: docs(guide): fix some invalid javascript in directive documentation Use double quotes to maintain consistency with other HTML --- docs/content/guide/directive.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 8ef5e08f..2f93ef33 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -95,7 +95,7 @@ Compilation of HTML happens in three phases: var $compile = ...; // injected into your code var scope = ...; - var html = '
'; + var html = ''; // Step 1: parse HTML into DOM element var template = angular.element(html); -- cgit v1.2.3