Skip to content

Commit e92b241

Browse files
authored
Rollup merge of #100079 - camelid:fix-doc-star-search, r=Dylan-DPC
Replace `* -> vec` with `-> vec` in docs Fixes #100078. Rustdoc's current syntax is `-> vec`.
2 parents 8d465cc + 234bfc0 commit e92b241

File tree

1 file changed

+1
-1
lines changed
  • src/librustdoc/html/static/js

1 file changed

+1
-1
lines changed

src/librustdoc/html/static/js/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ function loadCss(cssFileName) {
816816
<code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, \
817817
and <code>const</code>.",
818818
"Search functions by type signature (e.g., <code>vec -&gt; usize</code> or \
819-
<code>* -&gt; vec</code>)",
819+
<code>-&gt; vec</code>)",
820820
"Search multiple things at once by splitting your query with comma (e.g., \
821821
<code>str,u8</code> or <code>String,struct:Vec,test</code>)",
822822
"You can look for items with an exact name by putting double quotes around \

0 commit comments

Comments
 (0)