Skip to content

Commit bea8950

Browse files
committed
Fix typos
1 parent ade1c12 commit bea8950

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Add new convenience function `color_scheme` which returns a nice `Dark / Light` enum.
2525
* Add support for urxvt's `rgba:` color format.
2626
* Further refined the documentation (more organized terminal list, new terminals tested).
27-
* Improved handling of ambigous color palettes (e.g. when background color is the same as foreground).
27+
* Improved handling of ambiguous color palettes (e.g. when background color is the same as foreground).
2828
* Queries are now terminated with `ST` (the standard string terminator) instead of `BEL` (which is an xterm extension).
2929

3030
## 0.3.3

doc/feature-detection.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Colorsaurus sends two escape sequences: `OSC 10` (or `OSC 11`) followed by `DA1`
44
`DA1` is supported by almost every terminal.
55

66
Terminals process incoming escape sequences in order.
7-
Therefore if the reponse to `DA1` is seen first, then the terminal does not support `OSC 10` (or `OSC 11`).
7+
Therefore if the response to `DA1` is seen first, then the terminal does not support `OSC 10` (or `OSC 11`).
88

99
Colorsaurus thus doesn't need to rely on a timeout to detect if a terminal supports `OSC 10` (or `OSC 11`).
1010

src/xterm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ fn query<T>(
108108

109109
let response = read_response(&mut reader)?;
110110

111-
// We still need to consume the reponse to DA1
111+
// We still need to consume the response to DA1
112112
// Let's ignore errors, they are not that important.
113113
_ = consume_da1_response(&mut reader, true);
114114

0 commit comments

Comments
 (0)