Skip to content

Commit 70cac39

Browse files
committed
Fix typos
Found visually and by typos [1]. 1. https://github.com/crate-ci/typos
1 parent 6bdac37 commit 70cac39

13 files changed

+15
-15
lines changed

docs/beta/html/WhenToStopFuzzing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ <h3>Boosting the Performance of BletchleyPark<a class="headerlink" href="#boosti
11431143
</div>
11441144
</div>
11451145
<p>We’ll speed up the code breaking by <em>trying the abundant trigrams first</em>.</p>
1146-
<p>First, we’ll find out how many messages can be cracked by the existing brute forcing strategy at Bledgley park, given a maximum number of attempts. We’ll also track the number of messages cracked over time (<code class="docutils literal notranslate"><span class="pre">timeseries</span></code>).</p>
1146+
<p>First, we’ll find out how many messages can be cracked by the existing brute forcing strategy at Bletchley park, given a maximum number of attempts. We’ll also track the number of messages cracked over time (<code class="docutils literal notranslate"><span class="pre">timeseries</span></code>).</p>
11471147
<div class="cell docutils container">
11481148
<div class="cell_input docutils container">
11491149
<div class="highlight-ipython3 notranslate"><div class="highlight"><pre><span></span><span class="k">class</span> <span class="nc">BletchleyPark</span><span class="p">(</span><span class="n">BletchleyPark</span><span class="p">):</span>

docs/beta/html/_sources/WhenToStopFuzzing.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1600,7 +1600,7 @@
16001600
"source": [
16011601
"We'll speed up the code breaking by _trying the abundant trigrams first_. \n",
16021602
"\n",
1603-
"First, we'll find out how many messages can be cracked by the existing brute forcing strategy at Bledgley park, given a maximum number of attempts. We'll also track the number of messages cracked over time (`timeseries`)."
1603+
"First, we'll find out how many messages can be cracked by the existing brute forcing strategy at Bletchley park, given a maximum number of attempts. We'll also track the number of messages cracked over time (`timeseries`)."
16041604
]
16051605
},
16061606
{

docs/classic/WhenToStopFuzzing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13238,7 +13238,7 @@ <h3 id="Boosting-the-Performance-of-BletchleyPark">Boosting the Performance of B
1323813238
<div class="cell border-box-sizing text_cell rendered">
1323913239
<div class="inner_cell">
1324013240
<div class="text_cell_render border-box-sizing rendered_html"><p>We'll speed up the code breaking by <em>trying the abundant trigrams first</em>.</p>
13241-
<p>First, we'll find out how many messages can be cracked by the existing brute forcing strategy at Bledgley park, given a maximum number of attempts. We'll also track the number of messages cracked over time (<code>timeseries</code>).</p>
13241+
<p>First, we'll find out how many messages can be cracked by the existing brute forcing strategy at Bletchley park, given a maximum number of attempts. We'll also track the number of messages cracked over time (<code>timeseries</code>).</p>
1324213242
</div>
1324313243
</div>
1324413244
</div>

docs/html/WhenToStopFuzzing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13238,7 +13238,7 @@ <h3 id="Boosting-the-Performance-of-BletchleyPark">Boosting the Performance of B
1323813238
<div class="cell border-box-sizing text_cell rendered">
1323913239
<div class="inner_cell">
1324013240
<div class="text_cell_render border-box-sizing rendered_html"><p>We'll speed up the code breaking by <em>trying the abundant trigrams first</em>.</p>
13241-
<p>First, we'll find out how many messages can be cracked by the existing brute forcing strategy at Bledgley park, given a maximum number of attempts. We'll also track the number of messages cracked over time (<code>timeseries</code>).</p>
13241+
<p>First, we'll find out how many messages can be cracked by the existing brute forcing strategy at Bletchley park, given a maximum number of attempts. We'll also track the number of messages cracked over time (<code>timeseries</code>).</p>
1324213242
</div>
1324313243
</div>
1324413244
</div>

docs/notebooks/ClassDiagram.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@
363363
"outputs": [],
364364
"source": [
365365
"class D_Class(D_Class):\n",
366-
" pass # An incremental addiiton that should not impact D's semantics"
366+
" pass # An incremental addition that should not impact D's semantics"
367367
]
368368
},
369369
{

docs/notebooks/GreyboxFuzzer.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4874,7 +4874,7 @@
48744874
"source": [
48754875
"It probably didn't solve the maze a single time. How can we make the fuzzer aware how \"far\" a seed is from reaching the target? If we know that, we can just assign more energy to that seed.\n",
48764876
"\n",
4877-
"***Try it***. Print the statistics for the boosted fuzzer using the `AFLFastSchedule` and the `CountingGreyboxFuzzer`. It will likely perform much better than the unboosted greybox fuzzer: The lowest-probablity path happens to be also the path which reaches the target. You can execute your own code by opening this chapter as Jupyter notebook."
4877+
"***Try it***. Print the statistics for the boosted fuzzer using the `AFLFastSchedule` and the `CountingGreyboxFuzzer`. It will likely perform much better than the unboosted greybox fuzzer: The lowest-probability path happens to be also the path which reaches the target. You can execute your own code by opening this chapter as Jupyter notebook."
48784878
]
48794879
},
48804880
{

docs/notebooks/GreyboxGrammarFuzzer.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5640,7 +5640,7 @@
56405640
}
56415641
},
56425642
"source": [
5643-
"Our first structural mutation operator is `swap_fragments()`, which choses a random fragment in the given seed and substitutes it with a random fragment from the pool. We make sure that both fragments start with the same symbol. For instance, we may swap a closing tag in the seed HTML by another closing tag from the fragment pool.\n",
5643+
"Our first structural mutation operator is `swap_fragments()`, which chooses a random fragment in the given seed and substitutes it with a random fragment from the pool. We make sure that both fragments start with the same symbol. For instance, we may swap a closing tag in the seed HTML by another closing tag from the fragment pool.\n",
56445644
"\n",
56455645
"In order to choose a random fragment, the mutator counts all fragments (`n_count`) below the root fragment associated with the start-symbol."
56465646
]

docs/notebooks/Guide_for_Authors.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2111,7 +2111,7 @@
21112111
"}\n",
21122112
"```\n",
21132113
"\n",
2114-
"- environment is optional and can be 'none' or any of those available in [amsmath](https://www.sharelatex.com/learn/Aligning_equations_with_amsmath); 'equation', 'align','multline','gather', or their \\* variants. Additionally, 'breqn' or 'breqn\\*' will select the experimental [breqn](https://ctan.org/pkg/breqn) environment to *smart* wrap long equations. \n",
2114+
"- environment is optional and can be 'none' or any of those available in [amsmath](https://www.sharelatex.com/learn/Aligning_equations_with_amsmath); 'equation', 'align','multiline','gather', or their \\* variants. Additionally, 'breqn' or 'breqn\\*' will select the experimental [breqn](https://ctan.org/pkg/breqn) environment to *smart* wrap long equations. \n",
21152115
"- label is optional and will only be used if the equation is in an environment\n",
21162116
"\n",
21172117
"\n",

docs/notebooks/Parser.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5383,7 +5383,7 @@
53835383
}
53845384
},
53855385
"source": [
5386-
"We update the `prune_tree()` to account for the phony start symbol if it was insserted."
5386+
"We update the `prune_tree()` to account for the phony start symbol if it was inserted."
53875387
]
53885388
},
53895389
{

docs/notebooks/WebFuzzer.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7496,7 +7496,7 @@
74967496
}
74977497
},
74987498
"source": [
7499-
"The message looks as always – but if you have a look at your browser title, it should now show the first 10 characters of your \"secret\" notebook cookie. Instead of showing its prefix in the title, the script could also silently send the cookie to a remote server, allowing attackers to highjack your current notebook session and interact with the server on your behalf. It could also go and access and send any other data that is shown in your browser or otherwise available. It could run a *keylogger* and steal passwords and other sensitive data as it is typed in. Again, it will do so every time the compromised order with Jane Doe's name is shown in the browser and the associated script is executed."
7499+
"The message looks as always – but if you have a look at your browser title, it should now show the first 10 characters of your \"secret\" notebook cookie. Instead of showing its prefix in the title, the script could also silently send the cookie to a remote server, allowing attackers to hijack your current notebook session and interact with the server on your behalf. It could also go and access and send any other data that is shown in your browser or otherwise available. It could run a *keylogger* and steal passwords and other sensitive data as it is typed in. Again, it will do so every time the compromised order with Jane Doe's name is shown in the browser and the associated script is executed."
75007500
]
75017501
},
75027502
{

0 commit comments

Comments
 (0)