From b034aedf9df8a3a5cb6499a13c2d9de61d532211 Mon Sep 17 00:00:00 2001 From: Tanish-Eagle Date: Wed, 21 Sep 2022 23:47:36 +0530 Subject: [PATCH] Edited the println!.md --- en/src/formatted-output/println.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/en/src/formatted-output/println.md b/en/src/formatted-output/println.md index 515b687..f9e24b7 100644 --- a/en/src/formatted-output/println.md +++ b/en/src/formatted-output/println.md @@ -1,6 +1,6 @@ # println! and format! Printing is handled by a series of [`macros`][macros] defined in [`std::fmt`][fmt] -some of which include: +Some of which include: * `format!`: write formatted text to [`String`][string] * `print!`: same as `format!` but the text is printed to the console (io::stdout). @@ -8,8 +8,7 @@ some of which include: * `eprint!`: same as `format!` but the text is printed to the standard error (io::stderr). * `eprintln!`: same as `eprint!`but a newline is appended. -All parse text in the same fashion. As a plus, Rust checks formatting -correctness at compile time. +All parse text in the same fashion. As a plus, Rust checks format correctness at compile time. ## `format!` 1.🌟