mirror of
https://github.com/Sunscreen-tech/Sunscreen.git
synced 2026-04-19 03:00:06 -04:00
Fix docs
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user