diff --git a/README.md b/README.md index 2ba37c6..eed1a0b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A framework for building off-chain services for EVM chains. ## 🚧 WARNING: UNDER CONSTRUCTION 🚧 -This project is work in progress and subject to frequent changes as we are still working on wiring up the final system. +This project is a work in progress and subject to frequent changes as we are still working on wiring up the final system. It has not been audited for security purposes and should not be used in production yet. @@ -16,4 +16,4 @@ It has not been audited for security purposes and should not be used in producti POOL-->EXEC1; POOL-->EXEC2; POOL-->EXEC3; -``` \ No newline at end of file +``` diff --git a/baseapp/job_manager.go b/baseapp/job_manager.go index f6215cb..cb2ab78 100644 --- a/baseapp/job_manager.go +++ b/baseapp/job_manager.go @@ -35,7 +35,7 @@ type JobManager struct { producerCfg *worker.PoolConfig jobProducers *worker.Pool - // Job executors are a pool of workers that execute jobs. These workers + // Job executors are a pool of workers who execute jobs. These workers // are fed jobs by the job producers. executorCfg *worker.PoolConfig jobExecutors *worker.Pool diff --git a/contracts/bindings/erc20.abigen.go b/contracts/bindings/erc20.abigen.go index 9872867..65b36d5 100644 --- a/contracts/bindings/erc20.abigen.go +++ b/contracts/bindings/erc20.abigen.go @@ -391,7 +391,7 @@ func (it *IERC20ApprovalIterator) Next() bool { } } -// Error returns any retrieval or parsing error occurred during filtering. +// Error returns any retrieval or parsing error that occurred during filtering. func (it *IERC20ApprovalIterator) Error() error { return it.fail } @@ -403,7 +403,7 @@ func (it *IERC20ApprovalIterator) Close() error { return nil } -// IERC20Approval represents a Approval event raised by the IERC20 contract. +// IERC20Approval represents an Approval event raised by the IERC20 contract. type IERC20Approval struct { Owner common.Address Spender common.Address diff --git a/telemetry/README.md b/telemetry/README.md index 551bf49..cc879a1 100644 --- a/telemetry/README.md +++ b/telemetry/README.md @@ -11,7 +11,7 @@ Please see the following subsections for detailed configurations. ### Configuration -The first step is adding a section in your config file. See following subsection for details. The +The first step is adding a section in your config file. See the following subsection for details. The source code defining those configs can be found in [config.go](./datadog/config.go). #### Datadog Configs