From a5ffe5908d715dde1514872124177fe347d8a616 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 --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 13e43fb9..bc8212d7 100644 --- a/docs/tutorial.md +++ b/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