From 603b6c13b4a187766b33b49c7923399e78e18295 Mon Sep 17 00:00:00 2001
From: Lukas Reschke <lukas@statuscode.ch>
Date: Sat, 31 May 2014 21:11:29 +0200
Subject: [PATCH] Fix typo

---
 core/js/tests/specs/coreSpec.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js
index fb237bad5d..dea4d4b91c 100644
--- a/core/js/tests/specs/coreSpec.js
+++ b/core/js/tests/specs/coreSpec.js
@@ -131,7 +131,7 @@ describe('Core base tests', function() {
 		it('Returns a sanitized string if a string containing HTML is given', function() {
 			expect(escapeHTML('There needs to be a <script>alert(\"Unit\" + \'test\')</script> for it!')).toEqual('There needs to be a &lt;script&gt;alert(&quot;Unit&quot; + &#039;test&#039;)&lt;/script&gt; for it!');
 		});
-		it('Returns the string without modification if no potential dangerous character is passed.', function() {
+		it('Returns the string without modification if no potentially dangerous character is passed.', function() {
 			expect(escapeHTML('This is a good string without HTML.')).toEqual('This is a good string without HTML.');
 		});
 	});
-- 
GitLab