Skip to content

Commit

Permalink
Fix a typo (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
LazarusX authored Nov 19, 2018
1 parent f1238be commit 4376332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/utility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4376332

Please sign in to comment.