diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-07-26 16:04:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-26 16:04:39 +0200 |
| commit | 12c2092adb24e6cdc2bf2da71190beb2a66e381e (patch) | |
| tree | dcc14d4f3094a888341760b5d6bd5bee71cc7245 | |
| parent | d94f554953cfa440a244dfc9bc4f3b9b5fd7a5f9 (diff) | |
| parent | b0e67d5e3aa3d57705235dbd1722a26a4c1d43ba (diff) | |
| download | rust-12c2092adb24e6cdc2bf2da71190beb2a66e381e.tar.gz rust-12c2092adb24e6cdc2bf2da71190beb2a66e381e.zip | |
Rollup merge of #87474 - GuillaumeGomez:missing-whitespace-after-attr, r=notriddle
Add missing whitespace after attribute in HTML template Firefox (even though it worked) highlights it as red when you look at the source code because there is a missing whitespace. r? `@notriddle`
| -rw-r--r-- | src/librustdoc/html/templates/page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/templates/page.html b/src/librustdoc/html/templates/page.html index 9b1bef5e447..cc9c488db7c 100644 --- a/src/librustdoc/html/templates/page.html +++ b/src/librustdoc/html/templates/page.html @@ -83,7 +83,7 @@ </select> {#- -#} {%- endif -%} <input {# -#} - class="search-input"{# -#} + class="search-input" {# -#} name="search" {# -#} disabled {# -#} autocomplete="off" {# -#} |
