wez / wezterm

A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust
https://wezfurlong.org/wezterm/
Other
14.83k stars 674 forks source link

Bugfix/docs typos #5571

Closed gitmpr closed 2 weeks ago

gitmpr commented 2 weeks ago

fixing two typos I encountered in the docs s/within/withing s/psuedo/pseudo

that last one has been made a bunch of times in the code itself as well I noticed, see below. But for now I'm only going to propose these minor docs typo corrections

$ rg psuedo
pty/src/lib.rs
2://! psuedo terminal (pty) interfaces provided by the system.

pty/src/win/psuedocon.rs
95:            "failed to create psuedo console: HRESULT {}",

pty/src/win/conpty.rs
2:use crate::win::psuedocon::PsuedoCon;

pty/src/win/mod.rs
16:mod psuedocon;

pty/src/win/procthreadattr.rs
1:use crate::win::psuedocon::HPCON;

docs/config/lua/pane/index.markdown
15:process.  A Pane object tracks the psuedo terminal (or real serial terminal)

psuedo is a common spelling mistake of pseudo, but definitely a mistake

wez commented 2 weeks ago

Thanks!