Skip to content

Commit 032ef62

Browse files
authored
Fix import paths in examples for convolution module (#168)
1 parent bb05f6d commit 032ef62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/convolution.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ use std::{
6363
/// # Example
6464
///
6565
/// ```
66-
/// use ac_library_rs::ModInt1000000007 as Mint;
66+
/// use ac_library::ModInt1000000007 as Mint;
6767
/// use proconio::{input, source::once::OnceSource};
6868
///
6969
/// input! {
@@ -78,7 +78,7 @@ use std::{
7878
/// }
7979
///
8080
/// assert_eq!(
81-
/// ac_library_rs::convolution(&a, &b),
81+
/// ac_library::convolution(&a, &b),
8282
/// [
8383
/// Mint::new(-1),
8484
/// Mint::new(-4),
@@ -155,7 +155,7 @@ where
155155
/// # Example
156156
///
157157
/// ```
158-
/// use ac_library_rs::{Mod1000000007 as M, Modulus as _};
158+
/// use ac_library::{Mod1000000007 as M, Modulus as _};
159159
/// use proconio::{input, source::once::OnceSource};
160160
///
161161
/// const M: i32 = M::VALUE as _;
@@ -172,7 +172,7 @@ where
172172
/// }
173173
///
174174
/// assert_eq!(
175-
/// ac_library_rs::convolution::convolution_raw::<_, M>(&a, &b),
175+
/// ac_library::convolution::convolution_raw::<_, M>(&a, &b),
176176
/// [
177177
/// (-1i32).rem_euclid(M),
178178
/// (-4i32).rem_euclid(M),
@@ -234,7 +234,7 @@ where
234234
/// }
235235
///
236236
/// assert_eq!(
237-
/// ac_library_rs::convolution_i64(&a, &b),
237+
/// ac_library::convolution_i64(&a, &b),
238238
/// [-1, -4, -10, -12, -9],
239239
/// );
240240
/// ```

0 commit comments

Comments
 (0)