From 0c537d6af6b8a4a4d957c2a354812a7303618758 Mon Sep 17 00:00:00 2001 From: Ignacio Carbajo Date: Mon, 22 Feb 2016 23:25:17 +0000 Subject: [PATCH] Fix minor typo --- util/testutil/directory.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/testutil/directory.go b/util/testutil/directory.go index c9d8def28..1672c5b01 100644 --- a/util/testutil/directory.go +++ b/util/testutil/directory.go @@ -31,7 +31,7 @@ const ( type ( // Closer is the interface that wraps the Close method. Closer interface { - // Close reaps the underlying directory and its children. The directory + // Close reaps the underlying directory and its children. The directory // could be deleted by its users already. Close() } @@ -59,7 +59,7 @@ type ( } // T implements the needed methods of testing.TB so that we do not need - // to actually import testing (which has the side affect of adding all + // to actually import testing (which has the side effect of adding all // the test flags, which we do not want in non-test binaries even if // they make use of these utilities for some reason). T interface {