From e53cdd781c742b1a27177c826f14c735ebcdc816 Mon Sep 17 00:00:00 2001 From: Jorge Hermo Date: Sun, 5 Jan 2025 12:51:58 +0100 Subject: [PATCH] chore: fix comment typo --- core/src/types/operator/registry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/types/operator/registry.rs b/core/src/types/operator/registry.rs index e14f1e195b6c..28deadf3f1c2 100644 --- a/core/src/types/operator/registry.rs +++ b/core/src/types/operator/registry.rs @@ -33,7 +33,7 @@ thread_local! { // In order to reduce boilerplate, we should return in this function a `Builder` instead of operator?. pub type OperatorFactory = fn(&str, HashMap) -> Result; -// TODO: the default implementation should return an empty registry? Or it shoudl return the initialized +// TODO: the default implementation should return an empty registry? Or it should return the initialized // registry with all the services that are enabled? If so, should we include an `OperatorRegistry::empty` method // that allows users to create an empty registry? #[derive(Clone, Debug, Default)]