diff --git a/src/pmc/object.pmc b/src/pmc/object.pmc index a0ef249bc0..407a2ae6de 100644 --- a/src/pmc/object.pmc +++ b/src/pmc/object.pmc @@ -137,7 +137,7 @@ of the given name walking up the inheritance tree. */ PMC* get_attr_str(STRING *name) { Parrot_Object *obj = PARROT_OBJECT(SELF); - + /* Look up the index. */ INTVAL index = get_attrib_index(interp, obj->class, name); @@ -163,7 +163,7 @@ of the given name walking up the inheritance tree. */ void set_attr_str(STRING* name, PMC* value) { Parrot_Object *obj = PARROT_OBJECT(SELF); - + /* Look up the index. */ INTVAL index = get_attrib_index(interp, obj->class, name); @@ -204,7 +204,7 @@ Walks the MRO of the class and finds the method with the given name. break; } } - + /* Return the method that was found, if any. */ return method; } diff --git a/src/pmc/role.pmc b/src/pmc/role.pmc index f0e925fadf..4f875de2a5 100644 --- a/src/pmc/role.pmc +++ b/src/pmc/role.pmc @@ -495,7 +495,7 @@ Sets the name of the role, and updates the namespace accoringly. /* -=item C Gets the namespace associated with this role, if any.