diff --git a/NEWS b/NEWS index 8cafd6e6bdd..d13ffe47d8a 100644 --- a/NEWS +++ b/NEWS @@ -153,8 +153,8 @@ CHANGES WITH 248: ManageTemporaryAddress= switch. .network files gained a new ActivationPolicy= setting which allows - configuraiton how the UP state of an interface shall be managed, - i.e. whether the iterface is always upped, always downed, or may be + configuration how the UP state of an interface shall be managed, + i.e. whether the interface is always upped, always downed, or may be upped/downed by the user using "ip dev". * systemd.netdev files gained a [VLAN] Protocol=, IngressQOSMaps=, @@ -261,7 +261,7 @@ CHANGES WITH 248: specific variables, and not the full inherited environment. * systemctl's status output now shows unit state with a more careful - selection of Unicode characters: units in maintainance show a "○" + selection of Unicode characters: units in maintenance show a "○" symbol instead of the usual "●", failed units show "×", and services being reloaded "↻". @@ -277,7 +277,7 @@ CHANGES WITH 248: many terminal colours are used in output. * less 568 or newer is now required. Hyperlink ANSI sequences in - termina output are now used even if a pager is used, and older + terminal output are now used even if a pager is used, and older versions of less are not able to display these sequences correctly. SYSTEMD_URLIFY=0 may be used to disable it. diff --git a/man/resolvectl.xml b/man/resolvectl.xml index c87b6fd44b3..a2f26ec5ab8 100644 --- a/man/resolvectl.xml +++ b/man/resolvectl.xml @@ -55,7 +55,7 @@ query HOSTNAME|ADDRESS - Resolve domain names, as well as IPv4 and IPv6 addresses. When used in conjuntion + Resolve domain names, as well as IPv4 and IPv6 addresses. When used in conjunction with or (see below), resolves low-level DNS resource records. diff --git a/src/resolve/resolved-dns-scope.c b/src/resolve/resolved-dns-scope.c index 2bbb85c1bd8..2d24b5d1018 100644 --- a/src/resolve/resolved-dns-scope.c +++ b/src/resolve/resolved-dns-scope.c @@ -679,7 +679,7 @@ DnsScopeMatch dns_scope_good_domain( dns_name_endswith(domain, "local") > 0) return DNS_SCOPE_NO; - /* If the IP address to look up matches the local subnet, then implicity synthesizes + /* If the IP address to look up matches the local subnet, then implicitly synthesizes * DNS_SCOPE_YES_BASE + 0 on this interface, i.e. preferably resolve IP addresses via the DNS * server belonging to this interface. */ m = match_subnet_reverse_lookups(s, domain, false); diff --git a/src/resolve/resolved-dns-server.c b/src/resolve/resolved-dns-server.c index e027cdf7650..82481563546 100644 --- a/src/resolve/resolved-dns-server.c +++ b/src/resolve/resolved-dns-server.c @@ -639,8 +639,8 @@ int dns_server_adjust_opt(DnsServer *server, DnsPacket *packet, DnsServerFeature if (server->packet_fragmented) packet_size = MIN(server->received_udp_fragment_max, packet_size); - /* Let's not pick ridiculously large sizes, i.e. not more than 4K. Noone appears to - * ever use such large sized on the Internet IRL, hence let's not either. */ + /* Let's not pick ridiculously large sizes, i.e. not more than 4K. No one appears + * to ever use such large sized on the Internet IRL, hence let's not either. */ packet_size = MIN(packet_size, 4096U); } diff --git a/src/resolve/resolved-dns-stub.c b/src/resolve/resolved-dns-stub.c index a18998f1c86..a40eeea6553 100644 --- a/src/resolve/resolved-dns-stub.c +++ b/src/resolve/resolved-dns-stub.c @@ -415,7 +415,7 @@ static const char *nsid_string(void) { SD_ID128_MAKE(ed,d3,12,5d,16,b9,41,f9,a1,49,5f,ab,15,62,ab,27), &id); if (r < 0) { - log_debug_errno(r, "Failed to determine machine ID, igoring: %m"); + log_debug_errno(r, "Failed to determine machine ID, ignoring: %m"); return NULL; } diff --git a/src/shared/parse-argument.c b/src/shared/parse-argument.c index db182e4bcb2..68c55a54c9e 100644 --- a/src/shared/parse-argument.c +++ b/src/shared/parse-argument.c @@ -8,7 +8,7 @@ #include "string-table.h" #include "string-util.h" -/* All functions in this file emit warnigs. */ +/* All functions in this file emit warnings. */ int parse_boolean_argument(const char *optname, const char *s, bool *ret) { int r; diff --git a/src/systemctl/fuzz-systemctl-parse-argv.c b/src/systemctl/fuzz-systemctl-parse-argv.c index 31269863c1e..66b48eee857 100644 --- a/src/systemctl/fuzz-systemctl-parse-argv.c +++ b/src/systemctl/fuzz-systemctl-parse-argv.c @@ -63,7 +63,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { mac_selinux_finish(); /* Call static destructors to do global state cleanup. We do it here, and not in fuzz-main.c so that - * any global state is destoyed between fuzzer runs. */ + * any global state is destroyed between fuzzer runs. */ static_destruct(); return 0;