Typo fix: unknow -> unknown

PiperOrigin-RevId: 454205194
This commit is contained in:
Nicolas Lacasse
2022-06-10 11:25:45 -07:00
committed by gVisor bot
parent 72412f62da
commit 1d70ac89c5
+1 -1
View File
@@ -126,7 +126,7 @@ func DelGLock(class *MutexClass, subclass uint32) {
panic("the current goroutine doesn't have locks")
}
if _, ok := (*currentLocks)[class]; !ok {
panic("unlock of an unknow lock")
panic("unlock of an unknown lock")
}
delete(*currentLocks, class)