commit | 77a895ad01ebc98a4dc95d8355bc825ce80a56f6 | [log] [tgz] |
---|---|---|
author | Julien Schmidt <julienschmidt@users.noreply.github.com> | Wed Oct 14 00:55:20 2015 +0200 |
committer | Julien Schmidt <julienschmidt@users.noreply.github.com> | Wed Oct 14 00:55:20 2015 +0200 |
tree | 1491b11a487d1401839c3ff589ebd3f09d15f649 | |
parent | 2ba0f3d499bb3c8d1f47107eb55a597b6619d388 [diff] |
tree: Remove double ' in panic message
diff --git a/tree.go b/tree.go index af95bd4..faf5fdc 100644 --- a/tree.go +++ b/tree.go
@@ -188,7 +188,7 @@ } else if i == len(path) { // Make node a (in-path) leaf if n.handle != nil { - panic("a handle is already registered for path ''" + fullPath + "'") + panic("a handle is already registered for path '" + fullPath + "'") } n.handle = handle }