From 1803016cd7cb22a47c387b3a41cf091246ddb863 Mon Sep 17 00:00:00 2001 From: Jeff Cross Date: Tue, 19 May 2015 12:34:38 -0700 Subject: [PATCH] fix(guide): improve "add line after" wording in displaying-data --- public/docs/js/latest/guide/displaying-data.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/docs/js/latest/guide/displaying-data.jade b/public/docs/js/latest/guide/displaying-data.jade index fd69a9b1ba..b249074f4f 100644 --- a/public/docs/js/latest/guide/displaying-data.jade +++ b/public/docs/js/latest/guide/displaying-data.jade @@ -103,12 +103,12 @@ While you've used template: to specify an inline view, for larger templates you'd want to move them to a separate file and load them with templateUrl: instead. - p So you can see Angular dynamically update content, add a line after + p To see Angular dynamically update content, add a line after code-example(language="html" escape="html").

My name: {{ myName }}

- p to this: + p add this: pre.prettyprint.lang-html code. <p>Current time: {{ time }}</p>