aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authortimmywil <timmywillisn@gmail.com>2012-05-29 15:57:37 -0300
committertimmywil <timmywillisn@gmail.com>2012-05-29 15:57:37 -0300
commit162ffe729547c889030df7e62207dc34e313c977 (patch)
tree71fb8e463f98e55b6016f31f3d2ae6273b1c9138 /README.md
parent5660b6df505c31dc1b75f08ea886f072a214ccec (diff)
downloadjquery-162ffe729547c889030df7e62207dc34e313c977.tar.gz
jquery-162ffe729547c889030df7e62207dc34e313c977.zip
Update README: IDs are without hashes in t()
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9e47741a2..b97886bb0 100644
--- a/README.md
+++ b/README.md
@@ -192,9 +192,9 @@ Test Suite Convenience Methods Reference (See [test/data/testinit.js](https://gi
@example `q("main", "foo", "bar")` => [`<div id="main">`, `<span id="foo">`, `input id="bar">`]
-### Asserts that a select matches the given IDs ###
+### Asserts that a selection matches the given IDs ###
- t( testName, selector, [ "#array", "#of", "#ids" ] );
+ t( testName, selector, [ "array", "of", "ids" ] );
@example `t("Check for something", "//[a]", ["foo", "baar"]);`