Skip to content

Commit d461f0a

Browse files
KayleeBeyeneclaude
andcommitted
Fix doctest imports from envelope to envelope_cli
The crate rename missed doctest examples in money.rs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c48e5be commit d461f0a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/models/money.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ impl Money {
2020
///
2121
/// # Examples
2222
/// ```
23-
/// use envelope::models::Money;
23+
/// use envelope_cli::models::Money;
2424
/// let amount = Money::from_cents(1050); // $10.50
2525
/// ```
2626
pub const fn from_cents(cents: i64) -> Self {
@@ -31,7 +31,7 @@ impl Money {
3131
///
3232
/// # Examples
3333
/// ```
34-
/// use envelope::models::Money;
34+
/// use envelope_cli::models::Money;
3535
/// let amount = Money::from_dollars_cents(10, 50); // $10.50
3636
/// ```
3737
pub const fn from_dollars_cents(dollars: i64, cents: i64) -> Self {

0 commit comments

Comments
 (0)