This commit is contained in:
Rick Weber
2021-12-03 21:31:07 -08:00
parent 21bdc90cca
commit 09aaa28eee

View File

@@ -105,16 +105,14 @@ fn new_body(data: &Data) -> TokenStream {
* ```rust
* # use sunscreen_frontend_types::{types::Signed, Params, Context};
* # use sunscreen_frontend_macros::{circuit};
*
* #[circuit]
* fn multiply_add(a: Signed, b: Signed, c: Signed) -> Signed {
* a * b + c
* }
* ```
*
* * ```rust
* # use sunscreen_frontend_types::{types::Signed, Params, Context};
* # use sunscreen_frontend_macros::{circuit};
*
* ```rust
* #[circuit]
* fn multi_out(a: Signed, b: Signed, c: Signed) -> (Signed, Signed) {
* (a + b, b + c)