diff --git a/basis/unix/debugger/debugger.factor b/basis/unix/debugger/debugger.factor index ea32657057..e059e1a184 100644 --- a/basis/unix/debugger/debugger.factor +++ b/basis/unix/debugger/debugger.factor @@ -9,7 +9,7 @@ M: unix-error error. dup message>> write " (" write errno>> pprint ")" print ; M: unix-system-call-error error. - "Unix system call ``" write dup word>> pprint "'' failed:" print + "Unix system call “" write dup word>> pprint "” failed:" print nl dup message>> write " (" write dup errno>> pprint ")" print nl diff --git a/core/parser/parser.factor b/core/parser/parser.factor index 3c915cb07d..5c93ed86db 100644 --- a/core/parser/parser.factor +++ b/core/parser/parser.factor @@ -57,7 +57,7 @@ SYMBOL: auto-use? dup vocabulary>> [ (use+) ] [ amended-use get dup [ push ] [ 2drop ] if ] - [ "Added ``" "'' vocabulary to search path" surround note. ] + [ "Added “" "” vocabulary to search path" surround note. ] tri ] [ create-in ] if ;