diff --git a/man/sd_bus_add_match.xml b/man/sd_bus_add_match.xml
index 1ce1c13674..3de7a6a53e 100644
--- a/man/sd_bus_add_match.xml
+++ b/man/sd_bus_add_match.xml
@@ -94,13 +94,13 @@
connection object bus. The syntax of the match rule expression passed in
match is described in the D-Bus Specification. The specified handler
- function callback is called for eaching incoming message matching the specified expression,
+ function callback is called for each incoming message matching the specified expression,
the userdata parameter is passed as-is to the callback function. The match is installed
synchronously when connected to a bus broker, i.e. the call sends a control message requested the match to be added
to the broker and waits until the broker confirms the match has been installed successfully.
sd_bus_add_match_async() operates very similar to
- sd_bus_match_signal(), however it installs the match asynchronously, in a non-blocking
+ sd_bus_add_match(), however it installs the match asynchronously, in a non-blocking
fashion: a request is sent to the broker, but the call does not wait for a response. The
install_callback function is called when the response is later received, with the response
message from the broker as parameter. If this function is specified as NULL a default
diff --git a/man/sd_bus_request_name.xml b/man/sd_bus_request_name.xml
index ea4ea2279d..28fda406a5 100644
--- a/man/sd_bus_request_name.xml
+++ b/man/sd_bus_request_name.xml
@@ -100,7 +100,7 @@
is sent to the bus broker, and the call waits until the broker responds.
sd_bus_request_name_async() is an asynchronous version of
- sd_bus_release_name(). Instead of waiting for the request to complete, the request message is
+ sd_bus_request_name(). Instead of waiting for the request to complete, the request message is
enqueued. The specified callback will be called when the broker's response is received. If
the parameter is specified as NULL a default implementation is used instead which will
terminate the connection when the name cannot be acquired. The function returns a slot object in its