Skip to content

Commit ef84718

Browse files
author
sanex3339
committedNov 10, 2019
Merge remote-tracking branch 'origin/master'
2 parents c96aa36 + 751315b commit ef84718

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎App/containers/OptionsContainer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const Options = ({dispatch, options}) =>
8383
<Divider/>
8484

8585
<Form.Checkbox
86-
label='Control Flow Flatteing'
86+
label='Control Flow Flattening'
8787
checked={options.controlFlowFlattening}
8888
onChange={() => dispatch(actions.toggleOption(types.TOGGLE_CONTROL_FLOW_FLATTENING))}/>
8989

‎templates/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -89,17 +89,17 @@ <h3>What is this?</h3>
8989
functionality of the original code.</p>
9090
</div>
9191
<div class="column">
92-
<h3>So, like UglifyJS, Closure Compiler, etc?</h3>
92+
<h3>So, it is like UglifyJS, Closure Compiler, etc?</h3>
9393
<p>Yes and no. While UglifyJS (and others minifiers) does make the output code harder to understand
9494
(compressed and ugly), it can be easily be transformed into something readable using a JS
9595
Beautifier.</p>
9696
<p>This tool prevents that by using various transformations and "traps", such as
9797
<strong>self-defending</strong> and <strong>debug protection</strong>.</p>
9898
</div>
9999
<div class="column">
100-
<h3>How does the obfuscation works?</h3>
101-
<p>Through a series of transformations, such as variable / function / arguments renaming, strings removal,
102-
and others, your source code is transformed into something unreadable, while working exatcly as
100+
<h3>How does the obfuscation work?</h3>
101+
<p>Through a series of transformations, such as variable / function / arguments renaming, string removal,
102+
and others, your source code is transformed into something unreadable, while working exactly as
103103
before.</p>
104104
<p><a href="#FAQ">Read more in the FAQ...</a></p>
105105
</div>

0 commit comments

Comments
 (0)