docs: fix simple typo, opertator -> operator

There is a small typo in oss-fuzz/fuzzing/datasource/datasource.hpp.

Should read `operator` rather than `opertator`.

Signed-off-by: Ralph Giles <giles@thaumas.net>
This commit is contained in:
Tim Gates 2020-12-17 20:01:05 +11:00 committed by Ralph Giles
parent ce6dd6b573
commit bfd4f13f3e
No known key found for this signature in database
GPG Key ID: 9259A8F2D2D44C84

View File

@ -116,7 +116,7 @@ class Datasource : public Base
size_t left;
std::vector<uint8_t> get(const size_t min, const size_t max, const uint64_t id = 0) override;
// Make copy constructor and assignment opertator private.
// Make copy constructor and assignment operator private.
Datasource(const Datasource &) : data(0), size(0), idx(0), left(0) {}
Datasource& operator=(const Datasource &) { return *this; }
public: