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:
parent
ce6dd6b573
commit
bfd4f13f3e
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user