Skip to content

Commit 32ebe8e

Browse files
committed
don't use double quotes
1 parent 7635f2b commit 32ebe8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/html/static/js/search.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2319,7 +2319,7 @@ class DocSearch {
23192319
* @param {rustdoc.ParserQueryElement} elem
23202320
*/
23212321
function convertTypeFilterOnElem(elem) {
2322-
if (typeof elem.typeFilter === 'string') {
2322+
if (typeof elem.typeFilter === "string") {
23232323
let typeFilter = elem.typeFilter;
23242324
if (typeFilter === "const") {
23252325
typeFilter = "constant";

0 commit comments

Comments
 (0)