From 9d950b86ca173b7e1b670113140ec3f7898a0362 Mon Sep 17 00:00:00 2001 From: Luke Waite Date: Tue, 11 Aug 2015 10:39:37 -0400 Subject: [PATCH] docs($sce): correct typo Fix markdown quotation of a `;` so that it is properly rendered in the docs. --- src/ng/sce.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/sce.js b/src/ng/sce.js index 0c9d4a445a21..8733f14fc61d 100644 --- a/src/ng/sce.js +++ b/src/ng/sce.js @@ -542,7 +542,7 @@ function $SceDelegateProvider() { * - There are exactly **two wildcard sequences** - `*` and `**`. All other characters * match themselves. * - `*`: matches zero or more occurrences of any character other than one of the following 6 - * characters: '`:`', '`/`', '`.`', '`?`', '`&`' and ';'. It's a useful wildcard for use + * characters: '`:`', '`/`', '`.`', '`?`', '`&`' and '`;`'. It's a useful wildcard for use * in a whitelist. * - `**`: matches zero or more occurrences of *any* character. As such, it's not * appropriate for use in a scheme, domain, etc. as it would match too much. (e.g.