diff options
author | Gary Ye <garysye@gmail.com> | 2015-09-18 09:59:48 -0700 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2015-10-12 18:08:13 +0300 |
commit | 03eaadb131df925d1072afd2496ee3b41d2f1fc6 (patch) | |
tree | a8a50cb39a8e470b7dd64682b2f60b07eb83e223 /test/data/testinit.js | |
parent | ee0854f85bd686b55757e8854a10480f23c928da (diff) | |
download | jquery-03eaadb131df925d1072afd2496ee3b41d2f1fc6.tar.gz jquery-03eaadb131df925d1072afd2496ee3b41d2f1fc6.zip |
Tests:Docs: Fix various typos
* Changes "baar" to "bar" when used with "foo" in readme
and comments of js files
* mousenter -> mouseenter
Thanks @garysye, @KimTaehee
Closes gh-2613
Closes gh-2601
Diffstat (limited to 'test/data/testinit.js')
-rw-r--r-- | test/data/testinit.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/testinit.js b/test/data/testinit.js index 1815d8f7b..e88df966f 100644 --- a/test/data/testinit.js +++ b/test/data/testinit.js @@ -35,8 +35,8 @@ this.q = function() { * @param {String} a - Assertion name * @param {String} b - Sizzle selector * @param {String} c - Array of ids to construct what is expected - * @example t("Check for something", "//[a]", ["foo", "baar"]); - * @result returns true if "//[a]" return two elements with the IDs 'foo' and 'baar' + * @example t("Check for something", "//[a]", ["foo", "bar"]); + * @result returns true if "//[a]" return two elements with the IDs 'foo' and 'bar' */ QUnit.assert.t = function( a, b, c ) { var f = jQuery( b ).get(), |