Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix copy&pastos
  • Loading branch information
moritz committed Oct 26, 2011
1 parent 29d8aed commit fd63797
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/6model/reprs/P6int.c
Expand Up @@ -47,7 +47,7 @@ static INTVAL defined(PARROT_INTERP, PMC *obj) {
PARROT_DOES_NOT_RETURN
static void die_no_attrs(PARROT_INTERP) {
Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_INVALID_OPERATION,
"P6str representation does not support attribute storage");
"P6int representation does not support attribute storage");
}

/* Gets the current value for an attribute. */
Expand Down
2 changes: 1 addition & 1 deletion src/6model/reprs/P6num.c
Expand Up @@ -47,7 +47,7 @@ static INTVAL defined(PARROT_INTERP, PMC *obj) {
PARROT_DOES_NOT_RETURN
static void die_no_attrs(PARROT_INTERP) {
Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_INVALID_OPERATION,
"P6str representation does not support attribute storage");
"P6num representation does not support attribute storage");
}

/* Gets the current value for an attribute. */
Expand Down

0 comments on commit fd63797

Please sign in to comment.