From: mapeiqi Date: Sat, 15 Jul 2017 04:15:35 +0000 (+0800) Subject: log: fix comment X-Git-Tag: go1.9rc1~61 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=dd81c37f91304c2827f17dab8de661a5020c28c0;p=gostls13.git log: fix comment I just want to experience the whole Gerrit Flow, so I make this simple commit as my first commit to golang src repo. Change-Id: Ie744573beac7a8b9361f898fac269c9d88010493 Reviewed-on: https://go-review.googlesource.com/48630 Reviewed-by: Ma Peiqi Reviewed-by: Brad Fitzpatrick --- diff --git a/src/log/log.go b/src/log/log.go index 0ea4b89658..587904b11c 100644 --- a/src/log/log.go +++ b/src/log/log.go @@ -157,7 +157,7 @@ func (l *Logger) Output(calldepth int, s string) error { l.mu.Lock() defer l.mu.Unlock() if l.flag&(Lshortfile|Llongfile) != 0 { - // release lock while getting caller info - it's expensive. + // Release lock while getting caller info - it's expensive. l.mu.Unlock() var ok bool _, file, line, ok = runtime.Caller(calldepth)