From d951f15d7be6dd1a17d619df18e7ae103fad7259 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Thu, 3 Jul 2025 23:34:17 +0800 Subject: [PATCH] chore: fix typos Found via `typos --hidden --format brief` --- Cargo.toml | 2 +- README.md | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 16c44d9..7366db1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ depends = "imagemagick" extended-description = """## Features - Screenshotting your terminal with 4 frames per second (every 250ms) - Generates high quality small sized animated gif images -- **Build-In idle frames detection and optimization** (for super fluid +- **built-in idle frames detection and optimization** (for super fluid presentations) - Applies (can be disabled) border decor effects like drop shadow - Runs on MacOS and Linux diff --git a/README.md b/README.md index 9fd20f1..3e6a7c6 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Blazingly fast terminal recorder that generates animated gif images for the web ## Features - Screenshotting your terminal with 4 frames per second (every 250ms) - Generates high quality small sized animated gif images or mp4 videos -- **Build-In idle frames detection and optimization** (for super fluid presentations) +- **built-in idle frames detection and optimization** (for super fluid presentations) - Applies (can be disabled) border decor effects like drop shadow - Runs on MacOS, Linux and NetBSD - Uses native efficient APIs diff --git a/src/main.rs b/src/main.rs index ab0d718..2a22346 100644 --- a/src/main.rs +++ b/src/main.rs @@ -217,7 +217,7 @@ fn current_win_id(args: &ArgMatches) -> Result<(WindowId, Option)> { } /// -/// finds the window id for a given terminal / programm by name +/// finds the window id for a given terminal / program by name pub fn get_window_id_for(terminal: String) -> Result<(WindowId, String)> { let api = setup()?; for term in terminal.to_lowercase().split('.') {