You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tomjakubowski opened this issue
Jan 29, 2015
· 0 comments
Labels
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.
For example, the rustdoc-where tests originally used regexes as a kludge to avoid trying to match HTML tags, but with htmldocck they can now check against text nodes.
// @matches foo/struct.Alpha.html '//pre' "pub struct Alpha<A> where A: MyTrait"
The text was updated successfully, but these errors were encountered:
kmcallister
added
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
C-cleanup
Category: PRs that clean code up or issues documenting cleanup.
labels
Jan 30, 2015
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.
For example, the
rustdoc-where
tests originally used regexes as a kludge to avoid trying to match HTML tags, but withhtmldocck
they can now check against text nodes.Something like:
can be greatly clarified like:
The text was updated successfully, but these errors were encountered: