From c709e0859f1ab5c60795c12dd4aefb166e849e78 Mon Sep 17 00:00:00 2001 From: Ruud Kamphuis Date: Thu, 5 Aug 2021 18:52:56 +0200 Subject: [PATCH] Use `they` in comment --- cursor.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cursor.go b/cursor.go index 152d40c..5f07f5f 100644 --- a/cursor.go +++ b/cursor.go @@ -41,14 +41,14 @@ func HorizontalAbsolute(n int) { // Show the cursor if it was hidden previously. // Don't forget to show the cursor at least at the end of your application. -// Otherwise the user might have a terminal with a permanently hidden cursor, until he reopens the terminal. +// Otherwise the user might have a terminal with a permanently hidden cursor, until they reopen the terminal. func Show() { fmt.Print("\x1b[?25h") } // Hide the cursor. // Don't forget to show the cursor at least at the end of your application with Show. -// Otherwise the user might have a terminal with a permanently hidden cursor, until he reopens the terminal. +// Otherwise the user might have a terminal with a permanently hidden cursor, until they reopen the terminal. func Hide() { fmt.Print("\x1b[?25l") }