From 306ac674608e5a8d1affbdc2e459f8f011eca115 Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Thu, 30 Apr 2020 06:12:23 -0700 Subject: [PATCH] transport: Correct grammar in the doxygen comments. Signed-off-by: Richard Cochran --- transport.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/transport.h b/transport.h index 5b8c413..7a7f87b 100644 --- a/transport.h +++ b/transport.h @@ -70,7 +70,7 @@ int transport_recv(struct transport *t, int fd, struct ptp_message *msg); * @param fda The array of descriptors filled in by transport_open. * @param event One of the @ref transport_event enumeration values. * @param msg The message to send. - * @return Number of bytes send, or negative value in case of an error. + * @return Number of bytes sent, or negative value in case of an error. */ int transport_send(struct transport *t, struct fdarray *fda, enum transport_event event, struct ptp_message *msg); @@ -83,7 +83,7 @@ int transport_send(struct transport *t, struct fdarray *fda, * @param fda The array of descriptors filled in by transport_open. * @param event One of the @ref transport_event enumeration values. * @param msg The message to send. - * @return Number of bytes send, or negative value in case of an error. + * @return Number of bytes sent, or negative value in case of an error. */ int transport_peer(struct transport *t, struct fdarray *fda, enum transport_event event, struct ptp_message *msg); @@ -96,7 +96,7 @@ int transport_peer(struct transport *t, struct fdarray *fda, * @param event One of the @ref transport_event enumeration values. * @param msg The message to send. The address of the destination has to * be set in the address field. - * @return Number of bytes send, or negative value in case of an error. + * @return Number of bytes sent, or negative value in case of an error. */ int transport_sendto(struct transport *t, struct fdarray *fda, enum transport_event event, struct ptp_message *msg);