Skip to content

Commit 5d2cfcc

Browse files
authored
Merge pull request #1431 from crazeteam/master
chore: fix some typos
2 parents 1766149 + 54ca9b6 commit 5d2cfcc

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Features:
3737
# 1.6.0
3838
Fixes:
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

4343
Features:
@@ -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

entry_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}()

0 commit comments

Comments
 (0)