From 02dbd4ba7565f9bc92fec36c1a3e6f4f265e46dc Mon Sep 17 00:00:00 2001 From: tacheometry <39647014+tacheometry@users.noreply.github.com> Date: Wed, 6 Jan 2021 22:49:05 +0200 Subject: [PATCH] fix hyphen (#378) This uses an em dash instead of double lines (--) --- plugin/http/Error.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/http/Error.lua b/plugin/http/Error.lua index 271a8ab7..ed85fc67 100644 --- a/plugin/http/Error.lua +++ b/plugin/http/Error.lua @@ -8,7 +8,7 @@ Error.Kind = { }, ConnectFailed = { message = "Couldn't connect to the Rojo server.\n" .. - "Make sure the server is running -- use 'rojo serve' to run it!", + "Make sure the server is running — use 'rojo serve' to run it!", }, Timeout = { message = "HTTP request timed out.", @@ -63,4 +63,4 @@ function Error.fromRobloxErrorString(message) return Error.new(Error.Kind.Unknown, message) end -return Error \ No newline at end of file +return Error