summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/sigtrap.pm2
-rw-r--r--mro.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/sigtrap.pm b/lib/sigtrap.pm
index de520a03be..59c15b99cb 100644
--- a/lib/sigtrap.pm
+++ b/lib/sigtrap.pm
@@ -115,7 +115,7 @@ sub handler_traceback {
} elsif ($s eq '(eval)') {
$s = "eval {...}";
}
- $f = "file `$f'" unless $f eq '-e';
+ $f = "file '$f'" unless $f eq '-e';
$mess = "$w$s$a called from $f line $l\n";
syswrite(STDERR, $mess, length($mess));
}
diff --git a/mro.c b/mro.c
index 0dd65b2e2e..1c5f4eb131 100644
--- a/mro.c
+++ b/mro.c
@@ -994,7 +994,7 @@ S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * const seen_stashes,
/* Add it to the big list if it needs
* mro_isa_changed_in called on it. That happens if it was
* detached from the symbol table (so it had no HvENAME) before
- * being assigned to the spot named by the `name' variable, because
+ * being assigned to the spot named by the 'name' variable, because
* its cached isa linearisation is now stale (the effective name
* having changed), and subclasses will then use that cache when
* mro_package_moved calls mro_isa_changed_in. (See