From 3da04c52b991337e74c72f2c76bd1aa9df77eab2 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Fri, 7 Feb 2014 22:55:25 -0700 Subject: Rebalance after deletion. --- assert.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'assert.go') diff --git a/assert.go b/assert.go index 912e484..8101f8a 100644 --- a/assert.go +++ b/assert.go @@ -4,8 +4,8 @@ import "fmt" // TODO(benbjohnson): Remove assertions before release. -// __assert__ will panic with a given formatted message if the given condition is false. -func __assert__(condition bool, msg string, v ...interface{}) { +// _assert will panic with a given formatted message if the given condition is false. +func _assert(condition bool, msg string, v ...interface{}) { if !condition { panic(fmt.Sprintf("assertion failed: " + msg, v...)) } -- cgit v1.2.3