From 4f4e87a82c9e296e17368abcaea6e7467bdd0c32 Mon Sep 17 00:00:00 2001 From: Matthew Brener Date: Thu, 8 Sep 2016 16:14:04 +1000 Subject: [PATCH] its --> it's in actions.go comment --- cmd/micro/actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/micro/actions.go b/cmd/micro/actions.go index 35f7aff6..7e3be7a9 100644 --- a/cmd/micro/actions.go +++ b/cmd/micro/actions.go @@ -494,7 +494,7 @@ func (v *View) Backspace(usePlugin bool) bool { // and restore the position // If the user is using spaces instead of tabs and they are deleting - // whitespace at the start of the line, we should delete as if its a + // whitespace at the start of the line, we should delete as if it's a // tab (tabSize number of spaces) lineStart := v.Buf.Line(v.Cursor.Y)[:v.Cursor.X] tabSize := int(v.Buf.Settings["tabsize"].(float64))