@@ -63,7 +63,7 @@ use std::{
63
63
/// # Example
64
64
///
65
65
/// ```
66
- /// use ac_library_rs ::ModInt1000000007 as Mint;
66
+ /// use ac_library ::ModInt1000000007 as Mint;
67
67
/// use proconio::{input, source::once::OnceSource};
68
68
///
69
69
/// input! {
@@ -78,7 +78,7 @@ use std::{
78
78
/// }
79
79
///
80
80
/// assert_eq!(
81
- /// ac_library_rs ::convolution(&a, &b),
81
+ /// ac_library ::convolution(&a, &b),
82
82
/// [
83
83
/// Mint::new(-1),
84
84
/// Mint::new(-4),
@@ -155,7 +155,7 @@ where
155
155
/// # Example
156
156
///
157
157
/// ```
158
- /// use ac_library_rs ::{Mod1000000007 as M, Modulus as _};
158
+ /// use ac_library ::{Mod1000000007 as M, Modulus as _};
159
159
/// use proconio::{input, source::once::OnceSource};
160
160
///
161
161
/// const M: i32 = M::VALUE as _;
@@ -172,7 +172,7 @@ where
172
172
/// }
173
173
///
174
174
/// assert_eq!(
175
- /// ac_library_rs ::convolution::convolution_raw::<_, M>(&a, &b),
175
+ /// ac_library ::convolution::convolution_raw::<_, M>(&a, &b),
176
176
/// [
177
177
/// (-1i32).rem_euclid(M),
178
178
/// (-4i32).rem_euclid(M),
@@ -234,7 +234,7 @@ where
234
234
/// }
235
235
///
236
236
/// assert_eq!(
237
- /// ac_library_rs ::convolution_i64(&a, &b),
237
+ /// ac_library ::convolution_i64(&a, &b),
238
238
/// [-1, -4, -10, -12, -9],
239
239
/// );
240
240
/// ```
0 commit comments