Skip to content

Commit 57d4411

Browse files
Fixed unresolved import
1 parent c2c49ab commit 57d4411

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/big_integer/multiply.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/// # Examples
88
/// ```
99
/// assert_eq!(multiply("123", "456"), "56088");
10-
/// use crate::big_integer::multiply;
10+
/// use crate::the_algorithms_rust::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)