From f3179a503876e52c126ad3f868de30d472805505 Mon Sep 17 00:00:00 2001 From: Joe Farrell Date: Fri, 3 Jun 2016 17:56:21 +0100 Subject: [PATCH] Fixed typo in docstring --- btree.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btree.go b/btree.go index fc5aaaa..c14e980 100644 --- a/btree.go +++ b/btree.go @@ -22,7 +22,7 @@ // See some discussion on the matter here: // http://google-opensource.blogspot.com/2013/01/c-containers-that-save-memory-and-time.html // Note, though, that this project is in no way related to the C++ B-Tree -// implmentation written about there. +// implementation written about there. // // Within this tree, each node contains a slice of items and a (possibly nil) // slice of children. For basic numeric values or raw structs, this can cause