1
Fork 0

Rollup merge of #54097 - GuillaumeGomez:remove-keyword-namespace, r=QuietMisdreavus

rustdoc: Remove namespace for keywords

Fixes #54084.

r? @QuietMisdreavus
This commit is contained in:
Guillaume Gomez 2018-09-18 10:21:35 +02:00 committed by GitHub
commit 6aed133ebd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -1830,8 +1830,8 @@ impl Context {
*slot.borrow_mut() = self.current.clone();
});
let mut title = if it.is_primitive() {
// No need to include the namespace for primitive types
let mut title = if it.is_primitive() || it.is_keyword() {
// No need to include the namespace for primitive types and keywords
String::new()
} else {
self.current.join("::")