diff --git a/PATTERNS.md b/PATTERNS.md index 63696b830..046763e52 100644 --- a/PATTERNS.md +++ b/PATTERNS.md @@ -98,7 +98,7 @@ const opts = { case 'bclient': return new Redis(REDIS_URL, redisOpts); default: - throw new Error('Unexpected connection type: ', type); + throw new Error('Unexpected connection type: ' + type); } } }