File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Features:
3737# 1.6.0
3838Fixes:
3939 * end of line cleanup
40- * revert the entry concurrency bug fix whic leads to deadlock under some circumstances
40+ * revert the entry concurrency bug fix which leads to deadlock under some circumstances
4141 * update dependency on go-windows-terminal-sequences to fix a crash with go 1.14
4242
4343Features:
@@ -129,7 +129,7 @@ This new release introduces:
129129 which is mostly useful for logger wrapper
130130 * a fix reverting the immutability of the entry given as parameter to the hooks
131131 a new configuration field of the json formatter in order to put all the fields
132- in a nested dictionnary
132+ in a nested dictionary
133133 * a new SetOutput method in the Logger
134134 * a new configuration of the textformatter to configure the name of the default keys
135135 * a new configuration of the text formatter to disable the level truncation
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ func TestEntryReportCallerRace(t *testing.T) {
276276 entry := NewEntry (logger )
277277
278278 // logging before SetReportCaller has the highest chance of causing a race condition
279- // to be detected, but doing it twice just to increase the likelyhood of detecting the race
279+ // to be detected, but doing it twice just to increase the likelihood of detecting the race
280280 go func () {
281281 entry .Info ("should not race" )
282282 }()
@@ -293,7 +293,7 @@ func TestEntryFormatterRace(t *testing.T) {
293293 entry := NewEntry (logger )
294294
295295 // logging before SetReportCaller has the highest chance of causing a race condition
296- // to be detected, but doing it twice just to increase the likelyhood of detecting the race
296+ // to be detected, but doing it twice just to increase the likelihood of detecting the race
297297 go func () {
298298 entry .Info ("should not race" )
299299 }()
You can’t perform that action at this time.
0 commit comments