tree-wide: fix typo

This commit is contained in:
Yu Watanabe 2021-02-19 13:27:56 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent 63f48ab3fa
commit b480543cf0
7 changed files with 11 additions and 11 deletions

8
NEWS
View file

@ -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.

View file

@ -55,7 +55,7 @@
<varlistentry>
<term><command>query</command> <replaceable>HOSTNAME|ADDRESS</replaceable></term>
<listitem><para>Resolve domain names, as well as IPv4 and IPv6 addresses. When used in conjuntion
<listitem><para>Resolve domain names, as well as IPv4 and IPv6 addresses. When used in conjunction
with <option>--type=</option> or <option>--class=</option> (see below), resolves low-level DNS
resource records.</para>

View file

@ -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);

View file

@ -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);
}

View file

@ -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;
}

View file

@ -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;

View file

@ -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;