1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-20 22:21:20 +02:00

Remove double space in warning message

This commit is contained in:
Samy Pessé
2016-10-26 17:19:20 +02:00
parent e86269a168
commit f84f9fd1ef

View File

@@ -15,7 +15,7 @@ export default function warning(message) {
}
if (typeof console !== 'undefined') {
console.error('Warning: ', message) // eslint-disable-line no-console
console.error(`Warning: ${message}`) // eslint-disable-line no-console
}
try {