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 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 {