Skip to content

Commit 0912bbe

Browse files
committed
Fixed spelling issues
1 parent cf38a59 commit 0912bbe

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

src/obfuscator/steps/LocalsToTable.lua

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,7 @@ LocalsToTable.SettingsDescriptor = {
2828
},
2929
RemapIndices = {
3030
name = "RemapIndices",
31-
description = "When this option is set to true, new table indices will be generated instead of using the id's generated by the parsed",
32-
type = "boolean",
33-
default = true,
34-
},
35-
InsertShuffleStatements = {
36-
name = "InsertShuffleStatements",
37-
description = "When this option is set to true, statements will be inserted, that shuffle the order of the items during Runtime, making the variable flow harder to understand",
31+
description = "When this option is set to true, new table indices will be generated instead of using the id's generated by the parser",
3832
type = "boolean",
3933
default = true,
4034
}

src/obfuscator/steps/SplitStrings.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ SplitStrings.SettingsDescriptor = {
3636
},
3737
MaxLength = {
3838
name = "MaxLength",
39-
description = "The minimal length for the chunks in that the Strings are splitted",
39+
description = "The maximal length for the chunks in that the Strings are splitted",
4040
type = "number",
4141
default = 5,
4242
min = 1,
4343
max = nil,
4444
},
4545
ConcatenationType = {
4646
name = "ConcatenationType",
47-
description = "The Concatenation Algorithm. Note that when using coustom, the String Array will also be Shuffled",
47+
description = "The Functions used for Concatenation. Note that when using coustom, the String Array will also be Shuffled",
4848
type = "enum",
4949
values = {
5050
"strcat",

0 commit comments

Comments
 (0)