From 696f7a3e6f4470d0af085ba5ee0fe996c8e965fe Mon Sep 17 00:00:00 2001 From: lanhao34 Date: Wed, 5 Jul 2023 19:56:45 -0400 Subject: [PATCH] fix a typo --- ch09_macros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch09_macros.md b/ch09_macros.md index e12fe6b..b89d99e 100644 --- a/ch09_macros.md +++ b/ch09_macros.md @@ -146,7 +146,7 @@ Here is the breakdown of the steps: Now you can just run `@a` and watch Vim execute the macro recursively. -How did the macro know when to stop? When the macro was on the last line, it triedto run `j`, since there was no more line to go to, it stopped the macro execution. +How did the macro know when to stop? When the macro was on the last line, it tried to run `j`, since there was no more line to go to, it stopped the macro execution. ## Appending a Macro