corrected a typo (#10818)

corrected a typo found when reading a function documentation

I read the contributing.md, the code of conduct and signed the Google
Individual Contributor License Agreement.
This commit is contained in:
Elior Schneider 2023-08-11 20:07:18 +03:00 committed by GitHub
parent f5be60d9c4
commit d310b02fe0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class BaseFuzzTargetRunner:
def initialize(self):
"""Initialization method. Must be called before calling run_fuzz_targets.
Returns True on success."""
# Use a seperate initialization function so we can return False on failure
# Use a separate initialization function so we can return False on failure
# instead of exceptioning like we need to do if this were done in the
# __init__ method.