summaryrefslogtreecommitdiff
path: root/src/select/bloom.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2016-10-15 15:28:13 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2016-10-15 15:28:13 +0100
commit3b4fdeafdbed6b779b3b826eda9c9b703dd8c0a1 (patch)
tree75e68b07fd0cd0230ded7173913a6cb9a89e2473 /src/select/bloom.h
parent846a5fccea928453de47b4ff4bdf120071a1ba79 (diff)
downloadlibcss-3b4fdeafdbed6b779b3b826eda9c9b703dd8c0a1.tar.gz
libcss-3b4fdeafdbed6b779b3b826eda9c9b703dd8c0a1.tar.bz2
Access lwc caseless hash through supported API.
Diffstat (limited to 'src/select/bloom.h')
-rw-r--r--src/select/bloom.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select/bloom.h b/src/select/bloom.h
index 85094cd..11628ab 100644
--- a/src/select/bloom.h
+++ b/src/select/bloom.h
@@ -16,9 +16,9 @@
* Generate the bloom filter by adding calling css_bloom_add_hash() on each
* ancestor element name, class name and id name for the node.
*
- * Use the insesnsitive lwc_string:
+ * Use the insesnsitive hash value:
*
- * lwc_string_hash_value(str->insensitive)
+ * lwc_err = lwc_string_caseless_hash_value(str, &hash);
*/
#ifndef libcss_bloom_h_