From 7fdf52270b504f4e8e680cc7ae2dc2f8b1eaae3b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 19 Sep 2015 08:49:01 +0200 Subject: [PATCH] Fix stray backquote. --- src/methods.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/methods.rs b/src/methods.rs index facedaa3867e..f5361f255c7f 100644 --- a/src/methods.rs +++ b/src/methods.rs @@ -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"),