Skip to content

Commit 711231e

Browse files
authored
Fix typos (#389)
Found via `typos --format brief`
1 parent d5f6b70 commit 711231e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/lograge/formatters/key_value.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def format(key, value)
2121

2222
def parse_value(key, value)
2323
# Exactly preserve the previous output
24-
# Parsing this can be ambigious if the error messages contains
24+
# Parsing this can be ambiguous if the error messages contains
2525
# a single quote
2626
return "'#{value}'" if key == :error
2727
return Kernel.format('%.2f', value) if value.is_a? Float

lib/lograge/formatters/ltsv.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def fields_to_display(data)
1717
def format(key, value)
1818
if key == :error
1919
# Exactly preserve the previous output
20-
# Parsing this can be ambigious if the error messages contains
20+
# Parsing this can be ambiguous if the error messages contains
2121
# a single quote
2222
value = "'#{escape value}'"
2323
elsif value.is_a? Float

0 commit comments

Comments
 (0)