From: Lennart Poettering Date: Thu, 22 Apr 2021 12:34:53 +0000 (+0200) Subject: dissect: fix two minor typos in comments X-Git-Tag: v249-rc1~360 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7d25c2463f952dd47166abd47b578600467adac9;p=thirdparty%2Fsystemd.git dissect: fix two minor typos in comments --- diff --git a/src/shared/dissect-image.c b/src/shared/dissect-image.c index 63a81d42ad8..b4250144573 100644 --- a/src/shared/dissect-image.c +++ b/src/shared/dissect-image.c @@ -178,8 +178,8 @@ static int device_is_partition( if (!path_equal(parent_syspath, expected_parent_syspath)) return false; /* Has a different parent than what we need, not interesting to us */ - /* On kernel uevents the partition number we may find in the PARTN= field. Let's use that preferably, - * since it's cheaper and more importantly: the sysfs attribute "partition" appear to become + /* On kernel uevents we may find the partition number in the PARTN= field. Let's use that preferably, + * since it's cheaper and more importantly: the sysfs attribute "partition" appears to become * available late, hence let's use the property instead, which is available at the moment we see the * uevent. */ r = sd_device_get_property_value(d, "PARTN", &v);