From 48b5c9def3e3b118161bb248862c0a5173b9e88f Mon Sep 17 00:00:00 2001 From: Bourgerie Quentin Date: Tue, 1 Oct 2024 16:56:04 +0200 Subject: [PATCH] docs(frontend): Fix a typo in module composition --- docs/compilation/composing_functions_with_modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/compilation/composing_functions_with_modules.md b/docs/compilation/composing_functions_with_modules.md index 79d783fb4..7e4863c23 100644 --- a/docs/compilation/composing_functions_with_modules.md +++ b/docs/compilation/composing_functions_with_modules.md @@ -310,7 +310,7 @@ with MyModule.wire_pipeline(inputset) as samples_iter: for s in samples_iter: # Here we provide an example of how we expect the module functions to be used at runtime in fhe. - Module.increment(Module.decimate(Module.decrement(s))) + MyModule.increment(MyModule.decimate(MyModule.decrement(s))) # It is not needed to provide any inputsets to the `compile` method after tracing the wires, since those were already computed automatically during the module tracing. module = MyModule.compile(