diff --git a/.github/ISSUE_TEMPLATE/20_feature-request.md b/.github/ISSUE_TEMPLATE/20_feature-request.md index cf5ac000a23..1e5ccdbb3b3 100644 --- a/.github/ISSUE_TEMPLATE/20_feature-request.md +++ b/.github/ISSUE_TEMPLATE/20_feature-request.md @@ -15,7 +15,7 @@ assignees: '' **Use case** -> A clear and concise description of what is the intended usage scenario is. +> A clear and concise description of what the intended usage scenario is. **Describe the solution you'd like** diff --git a/src/Processors/IProcessor.h b/src/Processors/IProcessor.h index fd75eb530aa..ecd0cc6d4c4 100644 --- a/src/Processors/IProcessor.h +++ b/src/Processors/IProcessor.h @@ -365,11 +365,11 @@ public: /// Set limits for current storage. /// Different limits may be applied to different storages, we need to keep it per processor. - /// This method is need to be override only for sources. + /// This method is need to be overridden only for sources. virtual void setStorageLimits(const std::shared_ptr & /*storage_limits*/) {} /// This method is called for every processor without input ports. - /// Processor can return a new progress for the last read operation. + /// Processor can return new progress for the last read operation. /// You should zero internal counters in the call, in order to make in idempotent. virtual std::optional getReadProgress() { return std::nullopt; }