aboutsummaryrefslogtreecommitdiff
path: root/src/utils/error-msg.ts
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2020-03-17 21:36:48 -0500
committerMax Isom <[email protected]>2020-03-17 21:36:48 -0500
commit7844e80991d784eed107dd9a661dd5257ae49675 (patch)
treef015b8bb7ca79840235b81f59d97228d8b1d14cf /src/utils/error-msg.ts
parentc058ec95feacd57eebdb07d4f44469c5c6c4bc01 (diff)
downloadmuse-7844e80991d784eed107dd9a661dd5257ae49675.tar.xz
muse-7844e80991d784eed107dd9a661dd5257ae49675.zip
Refactor play command
Diffstat (limited to 'src/utils/error-msg.ts')
-rw-r--r--src/utils/error-msg.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/error-msg.ts b/src/utils/error-msg.ts
index 7325776..832de3c 100644
--- a/src/utils/error-msg.ts
+++ b/src/utils/error-msg.ts
@@ -5,7 +5,7 @@ export default (error?: string | Error): string => {
if (typeof error === 'string') {
str = `🚫 ${error}`;
} else if (error instanceof Error) {
- str = `🚫 error: ${error.name}`;
+ str = `🚫 ope: ${error.name}`;
}
}