Update README.md

This commit is contained in:
Jun "Mark" Hahn 2019-10-18 10:31:03 +09:00 committed by GitHub
parent fe7bcf4505
commit d244f0a7b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ func (s *Stats) Snapshot() map[string]int {
}
// snapshot은 더이상 뮤텍스에 의해서 보호되지 않는다.
// 따라서, snapshot에 대한 access가 안정되지 않는다. (any access to the snapshot is racy.)
// 따라서, snapshot에 대한 접근은 레이스 컨디션을 야기할 수 있다. (any access to the snapshot is racy.)
snapshot := stats.Snapshot()
```