From 1151302c423ec0910c253c738ce32e468b04cf55 Mon Sep 17 00:00:00 2001 From: qq88976321 Date: Mon, 11 Oct 2021 11:48:52 +0800 Subject: [PATCH] Fix a typo in ch14 --- ch14_external_commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch14_external_commands.md b/ch14_external_commands.md index 5e9770f..795c1d8 100644 --- a/ch14_external_commands.md +++ b/ch14_external_commands.md @@ -30,7 +30,7 @@ The syntax to read the STDOUT of an external command into the current buffer is: Vim will put the content of `file1.txt` into the current buffer. -If you run the `:r` command followed by a `!` and an external command, the output of that commmand will be inserted into the current buffer. To get the result of the `ls` command, run: +If you run the `:r` command followed by a `!` and an external command, the output of that command will be inserted into the current buffer. To get the result of the `ls` command, run: ``` :r !ls