From 437633258c6b9e99378fccf7a95e149a6b92b37c Mon Sep 17 00:00:00 2001 From: Ray Fang Date: Mon, 19 Nov 2018 13:35:33 +0800 Subject: [PATCH] Fix a typo (#290) --- src/common/utility.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/utility.ts b/src/common/utility.ts index c16c62a9..ba2a3403 100644 --- a/src/common/utility.ts +++ b/src/common/utility.ts @@ -501,7 +501,7 @@ export class Utility { const re = new RegExp(`(.|[\r\n]){1,${Constants.TwinValueMaxSize}}`, "g"); const options = optionStr.match(re); if (options.length > Constants.TwinValueMaxChunks) { - throw new Error(`Size of createOptions of ${settings.image} is too big. The maxium size of createOptions is 4K`); + throw new Error(`Size of createOptions of ${settings.image} is too big. The maximum size of createOptions is 4K`); } options.map((value, index) => { if (index === 0) {