Skip to content

Commit

Permalink
Merge pull request #177 from JordanSamhi/master
Browse files Browse the repository at this point in the history
Fix: typo
  • Loading branch information
andreas-zeller authored May 7, 2024
2 parents 44bb5c4 + 865aaf6 commit 511b497
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion notebooks/FuzzingWithConstraints.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@
"metadata": {},
"source": [
"To express a minimum numeric value, we can use a more elegant way.\n",
"The function `str.to_int()`, for instance, converts a string into an integer.\n",
"The function `str.to.int()`, for instance, converts a string into an integer.\n",
"To obtain a page size that of at least 100000, we can thus also write"
]
},
Expand Down
2 changes: 1 addition & 1 deletion notebooks/Parser.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@
"source": [
"## Using a Parser\n",
"\n",
"Generally speaking, a _parser_ is the part of a a program that processes (structured) input. The parsers we discuss in this chapter transform an input string into a _derivation tree_ (discussed in the [chapter on efficient grammar fuzzing](GrammarFuzzer.ipynb)). From a user's perspective, all it takes to parse an input is two steps: \n",
"Generally speaking, a _parser_ is the part of a program that processes (structured) input. The parsers we discuss in this chapter transform an input string into a _derivation tree_ (discussed in the [chapter on efficient grammar fuzzing](GrammarFuzzer.ipynb)). From a user's perspective, all it takes to parse an input is two steps: \n",
"\n",
"1. Initialize the parser with a grammar, as in\n",
"```\n",
Expand Down

0 comments on commit 511b497

Please sign in to comment.