Skip to content

Commit

Permalink
docs(frontend): Fix a typo in module composition
Browse files Browse the repository at this point in the history
  • Loading branch information
BourgerieQuentin committed Oct 7, 2024
1 parent ffaed14 commit 48b5c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/compilation/composing_functions_with_modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 48b5c9d

Please sign in to comment.