From 629667dc9e259cab06c61e814e0805a5ceb63634 Mon Sep 17 00:00:00 2001 From: Tim Siegel Date: Tue, 30 Jan 2024 09:26:30 -0500 Subject: [PATCH] std_misc/process/pipe.md: Fix typo in pangram string Pedantic nitpick: the pangram is missing an "s". --- src/std_misc/process/pipe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/std_misc/process/pipe.md b/src/std_misc/process/pipe.md index 1b1973718b..8abc7dd3af 100644 --- a/src/std_misc/process/pipe.md +++ b/src/std_misc/process/pipe.md @@ -9,7 +9,7 @@ use std::io::prelude::*; use std::process::Stdio; static PANGRAM: &'static str = -"the quick brown fox jumped over the lazy dog\n"; +"the quick brown fox jumps over the lazy dog\n"; fn main() { // Spawn the `wc` command