Skip to content
This repository was archived by the owner on Feb 3, 2026. It is now read-only.

Commit 6bd4d46

Browse files
authored
fix: doc comments (#32)
1 parent 6981941 commit 6bd4d46

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/rust-base.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ on:
66
branches: [main]
77
pull_request:
88

9-
# simplest example of using the rust-base action
109
jobs:
1110
rust-library-base:
1211
uses: init4tech/actions/.github/workflows/rust-library-base.yml@main
13-
with:
14-
require-lockfile: true
15-
rust-profile: "ci-rust"

bin/roundtrip.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,11 @@ async fn main() -> eyre::Result<()> {
6262
Ok(())
6363
}
6464

65-
/// Constructs an example [`Order`] based on the provided configuration and recipient address.
66-
/// If `rollup` is true, it creates an order that targets the rollup; otherwise, it creates an order that targets the host chain.
65+
/// Constructs an example [`UnsignedOrder`] based on the provided configuration and recipient
66+
/// address.
67+
///
68+
/// If `rollup` is true, it creates an order that targets the rollup; otherwise, it creates an
69+
/// order that targets the host chain.
6770
fn get_example_order(
6871
config: &FillerConfig,
6972
recipient: Address,

bin/submit_order.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,11 @@ async fn main() -> eyre::Result<()> {
7171
}
7272
}
7373

74-
/// Constructs an example [`Order`] based on the provided configuration and recipient address.
75-
/// If `rollup` is true, it creates an order that targets the rollup; otherwise, it creates an order that targets the host chain.
74+
/// Constructs an example [`UnsignedOrder`] based on the provided configuration and recipient
75+
/// address.
76+
///
77+
/// If `rollup` is true, it creates an order that targets the rollup; otherwise, it creates an
78+
/// order that targets the host chain.
7679
fn get_example_order(
7780
config: &FillerConfig,
7881
recipient: Address,

0 commit comments

Comments
 (0)