Fix stray backquote.

This commit is contained in:
Georg Brandl 2015-09-19 08:49:01 +02:00
parent b56ff4319e
commit 7fdf52270b

View File

@ -124,7 +124,7 @@ const CONVENTIONS: [(&'static str, &'static [SelfKind]); 5] = [
];
const TRAIT_METHODS: [(&'static str, usize, SelfKind, OutType, &'static str); 30] = [
("add", 2, ValueSelf, AnyType, "std::ops::Add`"),
("add", 2, ValueSelf, AnyType, "std::ops::Add"),
("sub", 2, ValueSelf, AnyType, "std::ops::Sub"),
("mul", 2, ValueSelf, AnyType, "std::ops::Mul"),
("div", 2, ValueSelf, AnyType, "std::ops::Div"),