From a2b0e6a537cb45bafb4451a26d2993afc1feab39 Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Sat, 6 Jan 2024 06:53:45 -0500 Subject: [PATCH] Fix typo in `BeginSynchronizedUpdate` docstring (#833) --- src/terminal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminal.rs b/src/terminal.rs index 49f413b1..e7406bed 100644 --- a/src/terminal.rs +++ b/src/terminal.rs @@ -404,7 +404,7 @@ impl Command for SetTitle { /// * Use [EndSynchronizedUpdate](./struct.EndSynchronizedUpdate.html) command to leave the entered alternate screen. /// /// When rendering the screen of the terminal, the Emulator usually iterates through each visible grid cell and -/// renders its current state. With applications updating the screen a at higher frequency this can cause tearing. +/// renders its current state. With applications updating the screen at a higher frequency this can cause tearing. /// /// This mode attempts to mitigate that. ///