Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
formulahendry committed Nov 19, 2018
2 parents d4801dd + 4376332 commit 8f5b5a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "azure-iot-edge",
"displayName": "Azure IoT Edge",
"description": "Develop, deploy, debug, and manage your IoT Edge solution",
"version": "1.5.1",
"version": "1.6.0-rc",
"publisher": "vsciot-vscode",
"aiKey": "95b20d64-f54f-4de3-8ad5-165a75a6c6fe",
"icon": "logo.png",
Expand Down
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 8f5b5a0

Please sign in to comment.