Skip to content

Commit c2c49ab

Browse files
Fixed unresolved import
1 parent a12cf5e commit c2c49ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/big_integer/multiply.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
///
77
/// # Examples
88
/// ```
9-
/// use crate::big_integer::multiply;
109
/// assert_eq!(multiply("123", "456"), "56088");
10+
/// use crate::big_integer::multiply;
1111
/// assert_eq!(multiply("99", "99"), "9801");
1212
/// ```
1313
pub fn multiply(num1: &str, num2: &str) -> String {

0 commit comments

Comments
 (0)