Skip to content

Commit

Permalink
[core] Fix t/codingstd/trailing_space.t
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@18247 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
mdiep committed Apr 17, 2007
1 parent 3ebaa3d commit c5a2ae0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/pmc/object.pmc
Expand Up @@ -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);

Expand All @@ -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);

Expand Down Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/role.pmc
Expand Up @@ -495,7 +495,7 @@ Sets the name of the role, and updates the namespace accoringly.

/*

=item C<PCCMETHOD void
=item C<PCCMETHOD void
namespace()>

Gets the namespace associated with this role, if any.
Expand Down

0 comments on commit c5a2ae0

Please sign in to comment.