From 5116b1cfb9456f8e5be5c0ae97e37f355174d8fb Mon Sep 17 00:00:00 2001 From: Mark Adamson Date: Sat, 7 Oct 2017 14:38:53 +0100 Subject: [PATCH] Add missing space in error message for unknown type Fixes #100 --- R/helpers.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/helpers.R b/R/helpers.R index eb44e72..e0bacd8 100644 --- a/R/helpers.R +++ b/R/helpers.R @@ -60,7 +60,7 @@ repoPrefix <- function(type, Rversion) { "mac.binary.el-capitan" = sprintf("bin/macosx/el-capitan/contrib/%s", Rversion), "mac.binary.leopard" = sprintf("bin/macosx/leopard/contrib/%s", Rversion), "mac.binary.mavericks" = sprintf("bin/macosx/mavericks/contrib/%s", Rversion), - stop("Type ", type, "not recognised.") + stop("Type ", type, " not recognised.") ) }