Skip to content

Commit 8f42dff

Browse files
robinhundtJoshua Nelson
authored and
Joshua Nelson
committed
Fixed typo in "go to latest version" tooltip
PR #1045 introduced a small typo in the "go to latest version" tooltips where a space was missing after the crate name.
1 parent 001f82f commit 8f42dff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/rustdoc/topbar.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,13 +182,13 @@
182182
If this isn't the most recent stable release, offer a link to the latest #}
183183
{%- elif not is_latest_version -%}
184184
{%- if metadata.yanked -%}
185-
{%- set tooltip = "You are seeing a yanked version of the " ~ metadata.name ~ "crate. Click here to go to the latest version." -%}
185+
{%- set tooltip = "You are seeing a yanked version of the " ~ metadata.name ~ " crate. Click here to go to the latest version." -%}
186186
{%- set title = "This release has been yanked, go to latest version" -%}
187187
{%- elif is_prerelease -%}
188-
{%- set tooltip = "You are seeing a pre-release version of the " ~ metadata.name ~ "crate. Click here to go to the latest stable version." -%}
188+
{%- set tooltip = "You are seeing a pre-release version of the " ~ metadata.name ~ " crate. Click here to go to the latest stable version." -%}
189189
{%- set title = "Go to latest stable release" -%}
190190
{%- else -%}
191-
{%- set tooltip = "You are seeing an outdated version of the " ~ metadata.name ~ "crate. Click here to go to the latest version." -%}
191+
{%- set tooltip = "You are seeing an outdated version of the " ~ metadata.name ~ " crate. Click here to go to the latest version." -%}
192192
{%- set title = "Go to latest version" -%}
193193
{%- endif -%}
194194

0 commit comments

Comments
 (0)