From 11c2ec095a4dd27d633e106d7b1b9f0301dc7ac5 Mon Sep 17 00:00:00 2001 From: Orkun Karaduman Date: Tue, 25 Dec 2018 18:34:32 +0300 Subject: [PATCH 1/2] license --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 82ce33b..e52c8ab 100644 --- a/LICENSE +++ b/LICENSE @@ -15,7 +15,7 @@ modification, are permitted provided that the following conditions are met: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +DISCLAIMED. IN NO EVENT SHALL AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND From b95dbb8a48c08edbc94ecd4c56a005ce3814a7f6 Mon Sep 17 00:00:00 2001 From: Orkun Karaduman Date: Wed, 26 Dec 2018 14:23:35 +0300 Subject: [PATCH 2/2] godoc --- criticalsection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/criticalsection.go b/criticalsection.go index b261163..c1fd058 100644 --- a/criticalsection.go +++ b/criticalsection.go @@ -7,7 +7,7 @@ import ( // A CriticalSection is particular type of mutual exclusion (mutex) that // may be locked multiple times by the same owner. // -// The CriticalSection is faster than ReentrantMutex. +// The CriticalSection is faster than RecursiveMutex. // // A CriticalSection must not be copied after first use. type CriticalSection struct {