diff --git a/NEWS b/NEWS index 5ea0dbe951..4b327e069b 100644 --- a/NEWS +++ b/NEWS @@ -71,7 +71,7 @@ CHANGES WITH 246 in spe: * Most options in systemd that accept hexadecimal values prefixed with 0x in additional to the usual decimal notation now also support octal - notation when he 0o prefix is used and binary notation if the 0b + notation when the 0o prefix is used and binary notation if the 0b prefix is used. * Unit files, tmpfiles.d/ snippets, sysusers.d/ snippets and other @@ -150,8 +150,7 @@ CHANGES WITH 246 in spe: * systemd-networkd's [Network] section gained a new setting IPv6PDSubnetId= that allows explicit configuration of the preferred - subnet that networkd's Prefix Delegation logic assigns to an - interfaces. + subnet that networkd's Prefix Delegation logic assigns to interfaces. * systemd-networkd gained support for configuring the HTB queuing discipline in the [HierarchyTokenBucket] and @@ -393,8 +392,8 @@ CHANGES WITH 246 in spe: may be used to let the systemd user instance manage services that are started automatically as part of the desktop session. - * "booctl" gained a new verb "reboot-to-firmware" that may be used - to query and change the firmware's reboot into firmware setup flag. + * "bootctl" gained a new verb "reboot-to-firmware" that may be used + to query and change the firmware's 'reboot into firmware' setup flag. * systemd-firstboot gained a new switch --kernel-command-line= that may be used to initialize the /etc/kernel/cmdline file of the image. It diff --git a/TODO b/TODO index 6fae765234..c356f60a87 100644 --- a/TODO +++ b/TODO @@ -44,7 +44,7 @@ Features: anything like that. * journald: do journal file writing out-of-process, with one writer process per - client UID, so tht synthetic hash table collisions can slow down a specific + client UID, so that synthetic hash table collisions can slow down a specific user's journal stream down but not the others. * add "throttling" to sd-event event sources: optionally, when we wake up too diff --git a/docs/DESKTOP_ENVIRONMENTS.md b/docs/DESKTOP_ENVIRONMENTS.md index b0ac5b824d..7c8331f9a9 100644 --- a/docs/DESKTOP_ENVIRONMENTS.md +++ b/docs/DESKTOP_ENVIRONMENTS.md @@ -64,7 +64,7 @@ desktop environments should adhere to the following conventions: is encouraged. * The RANDOM should be a string of random characters to ensure that multiple instances of the application can be launched. - It can be ommitted in the case of a non-transient application services which can ensure + It can be omitted in the case of a non-transient application services which can ensure multiple instances are not spawned, such as a DBus activated application. * If no application ID is available, the launcher should generate a reasonable name when possible (e.g. using `basename(argv[0])`). This name must not diff --git a/man/html.in b/man/html.in index c09d300d6f..b7e79841d0 100755 --- a/man/html.in +++ b/man/html.in @@ -6,7 +6,7 @@ if [ -z "$1" ]; then exit 1 fi -# make sure the rules have been regenrated (in case man/update-man-rules was just run) +# make sure the rules have been regenerated (in case man/update-man-rules was just run) ninja -C "@BUILD_ROOT@" version.h target="man/$1.html" diff --git a/man/man.in b/man/man.in index 812c6767fc..fa6164b8de 100755 --- a/man/man.in +++ b/man/man.in @@ -6,7 +6,7 @@ if [ -z "$1" ]; then exit 1 fi -# make sure the rules have been regenrated (in case man/update-man-rules was just run) +# make sure the rules have been regenerated (in case man/update-man-rules was just run) ninja -C "@BUILD_ROOT@" version.h page="$(echo "$1" | sed 's/\./\\./')" diff --git a/man/resolved.conf.xml b/man/resolved.conf.xml index 0e9b90c1cd..a39da086bf 100644 --- a/man/resolved.conf.xml +++ b/man/resolved.conf.xml @@ -80,7 +80,7 @@ The domains prefixed with ~ are called "routing domains". All domains listed here (both search domains and routing domains after removing the ~ prefix) define - a search path that preferably directs DNS queries to this inteface. This search path has an effect + a search path that preferably directs DNS queries to this interface. This search path has an effect only when suitable per-link DNS servers are known. Such servers may be defined through the DNS= setting (see above) and dynamically at run time, for example from DHCP leases. If no per-link DNS servers are known, routing domains have no effect. diff --git a/man/systemd-udevd.service.xml b/man/systemd-udevd.service.xml index c6c1d9bcc6..da7389c731 100644 --- a/man/systemd-udevd.service.xml +++ b/man/systemd-udevd.service.xml @@ -110,7 +110,7 @@ Set the signal which systemd-udevd will send to - forked off processes after reaching event timeout. The setting can be overriden + forked off processes after reaching event timeout. The setting can be overridden at boot time with the kernel command line option udev.timeout_signal=. Setting to SIGABRT may be helpful in order to debug worker timeouts. Defaults to diff --git a/src/home/homectl.c b/src/home/homectl.c index 7a473b791b..118bf63224 100644 --- a/src/home/homectl.c +++ b/src/home/homectl.c @@ -1380,7 +1380,7 @@ static int create_home(int argc, char *argv[], void *userdata) { if (r < 0) return r; - /* Remember the original hashed paswords before we add our own, so that we can return to them later, + /* Remember the original hashed passwords before we add our own, so that we can return to them later, * should the entered password turn out not to be acceptable. */ original_hashed_passwords = strv_copy(hr->hashed_password); if (!original_hashed_passwords) diff --git a/src/udev/udevd.c b/src/udev/udevd.c index 5f1c0934de..f3236dedfa 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -413,7 +413,7 @@ static int worker_mark_block_device_read_only(sd_device *dev) { /* Exclude synthetic devices for now, this is supposed to be a safety feature to avoid modification * of physical devices, and what sits on top of those doesn't really matter if we don't allow the - * underlying block devices to recieve changes. */ + * underlying block devices to receive changes. */ if (STARTSWITH_SET(val, "dm-", "md", "drbd", "loop", "nbd", "zram")) return 0;