Skip to content

Commit d4c05d3

Browse files
committed
Fixed spelling of "custom"
1 parent fff6b55 commit d4c05d3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/obfuscator/steps/Vmify.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
--
33
-- Vmify.lua
44
--
5-
-- This Script provides a Complex Obfuscation Step that will compile the entire Script to a fully coustom bytecode that does not share it's instructions
5+
-- This Script provides a Complex Obfuscation Step that will compile the entire Script to a fully custom bytecode that does not share it's instructions
66
-- with lua, making it much harder to crack than other lua obfuscators
77

88
local Step = require("obfuscator.step");
99
local SecureCompiler = require("obfuscator.compiler_secure.compiler");
1010

1111
local Vmify = Step:extend();
12-
Vmify.Description = "This Step will Compile your script into a fully-coustom (not a half coustom like other lua obfuscators) Bytecode Format and emit a vm for executing it.";
12+
Vmify.Description = "This Step will Compile your script into a fully-custom (not a half custom like other lua obfuscators) Bytecode Format and emit a vm for executing it.";
1313
Vmify.Name = "Vmify";
1414

1515
Vmify.SettingsDescriptor = {

tests.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Prometheus.colors.enabled = not noColors;
2525
-- Apply Obfuscation Pipeline
2626
local pipeline = Prometheus.Pipeline:new({
2727
Seed = 0; -- For Using Time as Seed
28-
VarNamePrefix = ""; -- No Coustom Prefix
28+
VarNamePrefix = ""; -- No Custom Prefix
2929
});
3030

3131
-- "Mangled" for names like this : a, b, c, d, ...

0 commit comments

Comments
 (0)