about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbinarycat <binarycat@envs.net>2025-03-04 13:37:56 -0600
committerbinarycat <binarycat@envs.net>2025-03-04 13:37:56 -0600
commit32ebe8ed04db275e68b4f1e08d7f6c8ddc806993 (patch)
tree6ce890227947bd37c54d16a90dbd7932dd80bf0c
parent7635f2bfc61b353b83c244cf758459486a2ea442 (diff)
downloadrust-32ebe8ed04db275e68b4f1e08d7f6c8ddc806993.tar.gz
rust-32ebe8ed04db275e68b4f1e08d7f6c8ddc806993.zip
don't use double quotes
-rw-r--r--src/librustdoc/html/static/js/search.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/js/search.js b/src/librustdoc/html/static/js/search.js
index cc8c7a3e43a..5daaddd50fb 100644
--- a/src/librustdoc/html/static/js/search.js
+++ b/src/librustdoc/html/static/js/search.js
@@ -2319,7 +2319,7 @@ class DocSearch {
          * @param {rustdoc.ParserQueryElement} elem
          */
         function convertTypeFilterOnElem(elem) {
-            if (typeof elem.typeFilter === 'string') {
+            if (typeof elem.typeFilter === "string") {
                 let typeFilter = elem.typeFilter;
                 if (typeFilter === "const") {
                     typeFilter = "constant";