diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 56d147fb1..595284d97 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -23,7 +23,7 @@ A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. -**Enviroment details** +**Environment details** OS: Name and version of operating system(s) ``` diff --git a/docs/protocol-extensions.rst b/docs/protocol-extensions.rst index 1a9bc0ae6..425cd3dce 100644 --- a/docs/protocol-extensions.rst +++ b/docs/protocol-extensions.rst @@ -222,7 +222,7 @@ Here ``!`` is not valid base64 encoded text, so it clears the clipboard. Further, since it is invalid, it should be ignored by terminal emulators that do not support this extension, thereby making it safe to use, simply always send it before starting a new OSC 52 paste, even if you aren't chunking -up large pastes, that way kitty wont concatenate your paste, and it will have +up large pastes, that way kitty won't concatenate your paste, and it will have no ill-effects in other terminal emulators. In case you're using software that can't be easily adapted to this diff --git a/glfw/glfw3.h b/glfw/glfw3.h index 8399d8b48..2230dd818 100644 --- a/glfw/glfw3.h +++ b/glfw/glfw3.h @@ -831,7 +831,7 @@ extern "C" { * @analysis Application programmer error. Fix the offending call. */ #define GLFW_NO_WINDOW_CONTEXT 0x0001000A -/*! @brief The reuqested feature is not provided by the platform. +/*! @brief The requested feature is not provided by the platform. * * The requested feature is not provided by the platform, so GLFW is unable to * implement it. The documentation for each function notes if it could emit diff --git a/glfw/x11_monitor.c b/glfw/x11_monitor.c index a0d58012f..26b42e293 100644 --- a/glfw/x11_monitor.c +++ b/glfw/x11_monitor.c @@ -169,7 +169,7 @@ void _glfwPollMonitorsX11(void) if (widthMM <= 0 || heightMM <= 0) { // HACK: If RandR does not provide a physical size, assume the - // X11 default 96 DPI and calcuate from the CRTC viewport + // X11 default 96 DPI and calculate from the CRTC viewport // NOTE: These members are affected by rotation, unlike the mode // info and output info members widthMM = (int) (ci->width * 25.4f / 96.f); diff --git a/kittens/tui/operations.py b/kittens/tui/operations.py index 9541d78cd..81d70fd7b 100644 --- a/kittens/tui/operations.py +++ b/kittens/tui/operations.py @@ -341,7 +341,7 @@ def request_from_clipboard(use_primary: bool = False) -> str: return '\x1b]52;{};?\x07'.format('p' if use_primary else 'c') -# Boilerplate to make operations availble via Handler.cmd {{{ +# Boilerplate to make operations available via Handler.cmd {{{ def writer(handler: HandlerType, func: Callable) -> Callable: diff --git a/kitty/config_data.py b/kitty/config_data.py index 330696c1c..fff803385 100644 --- a/kitty/config_data.py +++ b/kitty/config_data.py @@ -786,7 +786,7 @@ o('confirm_os_window_close', 0, option_type=positive_int, long_text=_(''' Ask for confirmation when closing an OS window that has at least this number of kitty windows in it. A value of zero disables confirmation. This confirmation also applies to requests to quit the entire application (all -OS windows, via the quite action). +OS windows, via the quit action). ''')) # }}} diff --git a/kitty/glfw-wrapper.h b/kitty/glfw-wrapper.h index 1e1cdc0d0..a93c3a472 100644 --- a/kitty/glfw-wrapper.h +++ b/kitty/glfw-wrapper.h @@ -569,7 +569,7 @@ * @analysis Application programmer error. Fix the offending call. */ #define GLFW_NO_WINDOW_CONTEXT 0x0001000A -/*! @brief The reuqested feature is not provided by the platform. +/*! @brief The requested feature is not provided by the platform. * * The requested feature is not provided by the platform, so GLFW is unable to * implement it. The documentation for each function notes if it could emit diff --git a/kitty/glfw.c b/kitty/glfw.c index f4055dd3d..e05268baf 100644 --- a/kitty/glfw.c +++ b/kitty/glfw.c @@ -589,7 +589,7 @@ create_os_window(PyObject UNUSED *self, PyObject *args) { #endif if (!global_state.is_wayland) { // On Wayland windows dont get a content scale until they receive an enterEvent anyway - // which wont happen until the event loop ticks, so using a temp window is useless. + // which won't happen until the event loop ticks, so using a temp window is useless. temp_window = glfwCreateWindow(640, 480, "temp", NULL, common_context); if (temp_window == NULL) { fatal("Failed to create GLFW temp window! This usually happens because of old/broken OpenGL drivers. kitty requires working OpenGL 3.3 drivers."); } }