]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
sd-bus: Fix typos in sd_bus_add_object_vtable docs
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sat, 28 Mar 2020 21:22:58 +0000 (22:22 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Tue, 31 Mar 2020 18:16:30 +0000 (20:16 +0200)
man/sd_bus_add_object_vtable.xml

index 06f414485f4c8e24ac8edbc5391beb9ca4d16ae7..b1cea7d7ac026d8ba6b97ce058fad75c3866b582 100644 (file)
   <refsect1>
     <title>Description</title>
 
-    <para><function>sd_bus_add_object_vtable()</function> is used to declare attributes for the path
+    <para><function>sd_bus_add_object_vtable()</function> is used to declare attributes for the
     object path <parameter>path</parameter> connected to the bus connection
     <parameter>bus</parameter> under the interface <parameter>interface</parameter>. The table
     <parameter>vtable</parameter> may contain property declarations using
           Parameter <replaceable>flags</replaceable> is a combination of flags, see below.</para>
 
           <para>The setter and getter methods may be omitted (specified as
-          <constant>NULL</constant>), if the property has one of the basic types or
+          <constant>NULL</constant>), if the property is one of the basic types or
           <literal>as</literal> in case of read-only properties. In those cases, the
           <replaceable>userdata</replaceable> and <replaceable>offset</replaceable> parameters must
-          together point to valid variable of the corresponding type. A default setter and getters
+          together point to a valid variable of the corresponding type. A default setter and getter
           will be provided, which simply copy the argument between this variable and the message.
           </para>