@@ -198,10 +198,11 @@ macro_rules! print_macro (
198198/// Equivalent to the kernel's [`pr_emerg`] macro. 
199199/// 
200200/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and 
201- /// `alloc ::format!` for information about the formatting syntax. 
201+ /// [`std ::format!`]  for information about the formatting syntax. 
202202/// 
203203/// [`pr_emerg`]: https://docs.kernel.org/core-api/printk-basics.html#c.pr_emerg 
204204/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html 
205+ /// [`std::format!`]: https://doc.rust-lang.org/std/macro.format.html 
205206/// 
206207/// # Examples 
207208/// 
@@ -222,10 +223,11 @@ macro_rules! pr_emerg (
222223/// Equivalent to the kernel's [`pr_alert`] macro. 
223224/// 
224225/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and 
225- /// `alloc ::format!` for information about the formatting syntax. 
226+ /// [`std ::format!`]  for information about the formatting syntax. 
226227/// 
227228/// [`pr_alert`]: https://docs.kernel.org/core-api/printk-basics.html#c.pr_alert 
228229/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html 
230+ /// [`std::format!`]: https://doc.rust-lang.org/std/macro.format.html 
229231/// 
230232/// # Examples 
231233/// 
@@ -246,10 +248,11 @@ macro_rules! pr_alert (
246248/// Equivalent to the kernel's [`pr_crit`] macro. 
247249/// 
248250/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and 
249- /// `alloc ::format!` for information about the formatting syntax. 
251+ /// [`std ::format!`]  for information about the formatting syntax. 
250252/// 
251253/// [`pr_crit`]: https://docs.kernel.org/core-api/printk-basics.html#c.pr_crit 
252254/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html 
255+ /// [`std::format!`]: https://doc.rust-lang.org/std/macro.format.html 
253256/// 
254257/// # Examples 
255258/// 
@@ -270,10 +273,11 @@ macro_rules! pr_crit (
270273/// Equivalent to the kernel's [`pr_err`] macro. 
271274/// 
272275/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and 
273- /// `alloc ::format!` for information about the formatting syntax. 
276+ /// [`std ::format!`]  for information about the formatting syntax. 
274277/// 
275278/// [`pr_err`]: https://docs.kernel.org/core-api/printk-basics.html#c.pr_err 
276279/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html 
280+ /// [`std::format!`]: https://doc.rust-lang.org/std/macro.format.html 
277281/// 
278282/// # Examples 
279283/// 
@@ -294,10 +298,11 @@ macro_rules! pr_err (
294298/// Equivalent to the kernel's [`pr_warn`] macro. 
295299/// 
296300/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and 
297- /// `alloc ::format!` for information about the formatting syntax. 
301+ /// [`std ::format!`]  for information about the formatting syntax. 
298302/// 
299303/// [`pr_warn`]: https://docs.kernel.org/core-api/printk-basics.html#c.pr_warn 
300304/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html 
305+ /// [`std::format!`]: https://doc.rust-lang.org/std/macro.format.html 
301306/// 
302307/// # Examples 
303308/// 
@@ -318,10 +323,11 @@ macro_rules! pr_warn (
318323/// Equivalent to the kernel's [`pr_notice`] macro. 
319324/// 
320325/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and 
321- /// `alloc ::format!` for information about the formatting syntax. 
326+ /// [`std ::format!`]  for information about the formatting syntax. 
322327/// 
323328/// [`pr_notice`]: https://docs.kernel.org/core-api/printk-basics.html#c.pr_notice 
324329/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html 
330+ /// [`std::format!`]: https://doc.rust-lang.org/std/macro.format.html 
325331/// 
326332/// # Examples 
327333/// 
@@ -342,10 +348,11 @@ macro_rules! pr_notice (
342348/// Equivalent to the kernel's [`pr_info`] macro. 
343349/// 
344350/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and 
345- /// `alloc ::format!` for information about the formatting syntax. 
351+ /// [`std ::format!`]  for information about the formatting syntax. 
346352/// 
347353/// [`pr_info`]: https://docs.kernel.org/core-api/printk-basics.html#c.pr_info 
348354/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html 
355+ /// [`std::format!`]: https://doc.rust-lang.org/std/macro.format.html 
349356/// 
350357/// # Examples 
351358/// 
@@ -368,10 +375,11 @@ macro_rules! pr_info (
368375/// yet. 
369376/// 
370377/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and 
371- /// `alloc ::format!` for information about the formatting syntax. 
378+ /// [`std ::format!`]  for information about the formatting syntax. 
372379/// 
373380/// [`pr_debug`]: https://docs.kernel.org/core-api/printk-basics.html#c.pr_debug 
374381/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html 
382+ /// [`std::format!`]: https://doc.rust-lang.org/std/macro.format.html 
375383/// 
376384/// # Examples 
377385/// 
@@ -395,11 +403,12 @@ macro_rules! pr_debug (
395403/// Equivalent to the kernel's [`pr_cont`] macro. 
396404/// 
397405/// Mimics the interface of [`std::print!`]. See [`core::fmt`] and 
398- /// `alloc ::format!` for information about the formatting syntax. 
406+ /// [`std ::format!`]  for information about the formatting syntax. 
399407/// 
400408/// [`pr_info!`]: crate::pr_info! 
401409/// [`pr_cont`]: https://docs.kernel.org/core-api/printk-basics.html#c.pr_cont 
402410/// [`std::print!`]: https://doc.rust-lang.org/std/macro.print.html 
411+ /// [`std::format!`]: https://doc.rust-lang.org/std/macro.format.html 
403412/// 
404413/// # Examples 
405414/// 
0 commit comments