From 409a5e7eb4cca107037fafa4a7eea92603edb83d Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sat, 22 Dec 2012 01:15:33 +0000 Subject: libgo: Update to revision 15193:6fdc1974457c of master library. From-SVN: r194692 --- libgo/go/builtin/builtin.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libgo/go/builtin/builtin.go') diff --git a/libgo/go/builtin/builtin.go b/libgo/go/builtin/builtin.go index a30943b..91d263a 100644 --- a/libgo/go/builtin/builtin.go +++ b/libgo/go/builtin/builtin.go @@ -124,8 +124,8 @@ func append(slice []Type, elems ...Type) []Type func copy(dst, src []Type) int // The delete built-in function deletes the element with the specified key -// (m[key]) from the map. If there is no such element, delete is a no-op. -// If m is nil, delete panics. +// (m[key]) from the map. If m is nil or there is no such element, delete +// is a no-op. func delete(m map[Type]Type1, key Type) // The len built-in function returns the length of v, according to its type: -- cgit v1.1