typos: fix some typos

This commit is contained in:
Ben Boeckel 2024-12-24 23:48:34 +01:00
parent b15714b38a
commit d03b7ead18
8 changed files with 10 additions and 10 deletions

View file

@ -369,7 +369,7 @@ refresh(const struct bar *_bar)
/* Send an event to handle refresh from main thread */ /* Send an event to handle refresh from main thread */
/* Note: docs say that all X11 events are 32 bytes, reglardless of /* Note: docs say that all X11 events are 32 bytes, regardless of
* the size of the event structure */ * the size of the event structure */
xcb_expose_event_t *evt = calloc(32, 1); xcb_expose_event_t *evt = calloc(32, 1);

View file

@ -137,7 +137,7 @@ content:
# STACK # STACK
This particles combines multiple decorations. This particle combines multiple decorations.
## CONFIGURATION ## CONFIGURATION

View file

@ -17,8 +17,8 @@ currently present in the machine.
for the machine for the machine
| is_disk | is_disk
: boolean : boolean
: whether or not the device is a disk (e.g. sda, sdb) or a partition : whether or not the device is a disk (e.g., sda, sdb) or a partition
(e.g. sda1, sda2, ...). "Total" is advertised as a disk. (e.g., sda1, sda2, ...). "Total" is advertised as a disk.
| read_speed | read_speed
: int : int
: bytes read, in bytes/s : bytes read, in bytes/s

View file

@ -19,10 +19,10 @@ pipewire - Monitors pipewire for volume, mute/unmute, device change
: Current device description : Current device description
| form_factor | form_factor
: string : string
: Current device form factor (headset, speaker, mic, etc) : Current device form factor (headset, speaker, mic, etc.)
| bus | bus
: string : string
: Current device bus (bluetooth, alsa, etc) : Current device bus (bluetooth, alsa, etc.)
| icon | icon
: string : string
: Current device icon name : Current device icon name

View file

@ -16,7 +16,7 @@ configurable amount of time.
In continuous mode, the script is executed once. It will typically run In continuous mode, the script is executed once. It will typically run
in a loop, sending an updated tag set whenever it needs, or wants in a loop, sending an updated tag set whenever it needs, or wants
to. The last tag set is used (displayed) by yambar until a new tag set to. The last tag set is used (displayed) by yambar until a new tag set
is received. This mode is intended to be used by scripts that depends is received. This mode is intended to be used by scripts that depend
on non-polling methods to update their state. on non-polling methods to update their state.
Tag sets, or _transactions_, are separated by an empty line Tag sets, or _transactions_, are separated by an empty line

View file

@ -155,7 +155,7 @@ content:
This particle is a list (or sequence, if you like) of other This particle is a list (or sequence, if you like) of other
particles. It can be used to render e.g. _string_ particles with particles. It can be used to render e.g. _string_ particles with
different font and/or color formatting. Or ay other particle different font and/or color formatting. Or any other particle
combinations. combinations.
But note that this means you *cannot* set any attributes on the _list_ But note that this means you *cannot* set any attributes on the _list_

View file

@ -25,7 +25,7 @@ yambar - modular status panel for X11 and Wayland
*-p*,*--print-pid*=_FILE_|_FD_ *-p*,*--print-pid*=_FILE_|_FD_
Print PID to this file, or FD, when successfully started. The file Print PID to this file, or FD, when successfully started. The file
(or FD) is closed immediately after writing the PID. When a _FILE_ (or FD) is closed immediately after writing the PID. When a _FILE_
as been specified, the file is unlinked exit. as been specified, the file is unlinked upon exiting.
*-d*,*--log-level*={*info*,*warning*,*error*,*none*} *-d*,*--log-level*={*info*,*warning*,*error*,*none*}
Log level, used both for log output on stderr as well as Log level, used both for log output on stderr as well as

View file

@ -368,7 +368,7 @@ device_events_param(void *userdata, int seq, uint32_t id, uint32_t index, uint32
if (binded_node == NULL) if (binded_node == NULL)
return; return;
/* Node's device is the the same as route's device */ /* Node's device is the same as route's device */
if (output_informations->device_id != route->device->id) if (output_informations->device_id != route->device->id)
return; return;