From be7fe9cb403e2ec5a2e1c49cebeafbc311fc0df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Fri, 15 May 2015 17:51:57 -0700 Subject: [PATCH] Followup to #3852, use https (cherry picked from commit cfa354415b01dcac3187231c240bc155bb637677) --- docs/docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorial.md b/docs/docs/tutorial.md index 13e43fb9bf..bc8212d7ee 100644 --- a/docs/docs/tutorial.md +++ b/docs/docs/tutorial.md @@ -249,7 +249,7 @@ All we're doing here is calling the marked library. We need to convert `this.pro But there's a problem! Our rendered comments look like this in the browser: "`

`This is ``another`` comment`

`". We want those tags to actually render as HTML. -That's React protecting you from an [XSS attack](http://en.wikipedia.org/wiki/Cross-site_scripting). There's a way to get around it but the framework warns you not to use it: +That's React protecting you from an [XSS attack](https://en.wikipedia.org/wiki/Cross-site_scripting). There's a way to get around it but the framework warns you not to use it: ```javascript{4,10} // tutorial7.js