From eac0412d18eb4bd64341a44a5ce55b12931093c4 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 21 Dec 2002 22:12:31 +0000 Subject: [PATCH] Fixed comment [SVN r16676] --- src/object/function.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/object/function.cpp b/src/object/function.cpp index 259bfb86..2a9f0121 100644 --- a/src/object/function.cpp +++ b/src/object/function.cpp @@ -267,8 +267,8 @@ void function::add_to_namespace( { // Binary operators need an additional overload which // returns NotImplemented, so that Python will try the - // lxxx functions on the other operand. We add this when - // no overloads for the operator already exist. + // __rxxx__ functions on the other operand. We add this + // when no overloads for the operator already exist. new_func->add_overload(not_implemented_function()); }