From b51e15780fbb57e4a5226420a007ae49abf2a16e Mon Sep 17 00:00:00 2001 From: Mikio Hara Date: Sat, 18 Jan 2014 16:02:59 +0900 Subject: [PATCH] syscall: fix typo R=r CC=golang-codereviews https://golang.org/cl/54040043 --- src/pkg/syscall/rlimit_unix_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pkg/syscall/rlimit_unix_test.go b/src/pkg/syscall/rlimit_unix_test.go index e84d62ad6f..fc9b02609c 100644 --- a/src/pkg/syscall/rlimit_unix_test.go +++ b/src/pkg/syscall/rlimit_unix_test.go @@ -36,8 +36,8 @@ func TestRlimit(t *testing.T) { set.Cur = set.Max - 1 if set != get { // Seems like Darwin requires some privilege to - // increse the soft limit of rlimit sandbox, though - // Setrlimit never reports error. + // increase the soft limit of rlimit sandbox, though + // Setrlimit never reports an error. switch runtime.GOOS { case "darwin": default: -- 2.48.1