From 49dc2e55d9dca7a64f59dcc23db6715734bef745 Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Wed, 25 Nov 2015 13:45:37 +0000 Subject: [PATCH] Fix spelling of 'existent' Signed-off-by: Bryan Boreham --- filenotify/poller_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filenotify/poller_test.go b/filenotify/poller_test.go index da946d2..49e6e64 100644 --- a/filenotify/poller_test.go +++ b/filenotify/poller_test.go @@ -14,10 +14,10 @@ func TestPollerAddRemove(t *testing.T) { w := NewPollingWatcher() if err := w.Add("no-such-file"); err == nil { - t.Fatal("should have gotten error when adding a non-existant file") + t.Fatal("should have gotten error when adding a non-existent file") } if err := w.Remove("no-such-file"); err == nil { - t.Fatal("should have gotten error when removing non-existant watch") + t.Fatal("should have gotten error when removing non-existent watch") } f, err := ioutil.TempFile("", "asdf")