Skip to content

Commit fd63797

Browse files
committed
fix copy&pastos
1 parent 29d8aed commit fd63797

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/6model/reprs/P6int.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ static INTVAL defined(PARROT_INTERP, PMC *obj) {
4747
PARROT_DOES_NOT_RETURN
4848
static void die_no_attrs(PARROT_INTERP) {
4949
Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_INVALID_OPERATION,
50-
"P6str representation does not support attribute storage");
50+
"P6int representation does not support attribute storage");
5151
}
5252

5353
/* Gets the current value for an attribute. */

src/6model/reprs/P6num.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ static INTVAL defined(PARROT_INTERP, PMC *obj) {
4747
PARROT_DOES_NOT_RETURN
4848
static void die_no_attrs(PARROT_INTERP) {
4949
Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_INVALID_OPERATION,
50-
"P6str representation does not support attribute storage");
50+
"P6num representation does not support attribute storage");
5151
}
5252

5353
/* Gets the current value for an attribute. */

0 commit comments

Comments
 (0)