Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix rustdoc highlighting of
&
and *
.
Whitespace tokens were included, so the span check used with `&` was incorrect, and it was never highlighted as kw-2. The `*` in `*foo` and `*const T` should also be highlighted kw-2, so I added them. Note that this *will* cause mishighlighting of code like `1*2`, but that should have been written `1 * 2`. Same deal with `1&2`.
- Loading branch information