aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2016-01-14 12:22:45 -0500
committerTimmy Willison <timmywillisn@gmail.com>2016-01-14 12:22:45 -0500
commit10c1254d159dbd3d78e8afca590fe53b0c6dfa26 (patch)
tree687ec14144d3515ae4e4242eb287e8080f1ba69d /test
parentdeb68280e5a89d0941a2520c8d024db62f68cd17 (diff)
downloadjquery-10c1254d159dbd3d78e8afca590fe53b0c6dfa26.tar.gz
jquery-10c1254d159dbd3d78e8afca590fe53b0c6dfa26.zip
Docs: remove compat references
Diffstat (limited to 'test')
-rw-r--r--test/unit/core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/core.js b/test/unit/core.js
index 05f99156f..5f7d41d69 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -589,7 +589,7 @@ QUnit.test( "jQuery('html')", function( assert ) {
assert.ok( s, "Creating a script" );
assert.ok( !jQuery[ "foo" ], "Make sure the script wasn't executed prematurely" );
jQuery( "body" ).append( "<script>jQuery.foo='test';</script>" );
- assert.ok( jQuery[ "foo" ], "Executing a scripts contents in the right context" );
+ assert.ok( jQuery[ "foo" ], "Executing a script's contents in the right context" );
// Test multi-line HTML
div = jQuery( "<div>\r\nsome text\n<p>some p</p>\nmore text\r\n</div>" )[ 0 ];