Fix typo in BeginSynchronizedUpdate docstring (#833)

This commit is contained in:
Dheepak Krishnamurthy 2024-01-06 06:53:45 -05:00 committed by GitHub
parent 0914f2d91e
commit a2b0e6a537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -404,7 +404,7 @@ impl<T: fmt::Display> Command for SetTitle<T> {
/// * Use [EndSynchronizedUpdate](./struct.EndSynchronizedUpdate.html) command to leave the entered alternate screen. /// * 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 /// 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. /// This mode attempts to mitigate that.
/// ///