Update README: IDs are without hashes in t()

This commit is contained in:
timmywil 2012-05-29 15:57:37 -03:00
parent 5660b6df50
commit 162ffe7295

View File

@ -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"]);`