qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] chardev/char-fe: Fix typos


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH] chardev/char-fe: Fix typos
Date: Mon, 13 Aug 2018 12:12:36 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1

On 13/08/2018 11:34, Julia Suvorova wrote:
> Fixup some typos in the comments.
> 
> Signed-off-by: Julia Suvorova <address@hidden>
> ---
>  include/chardev/char-fe.h | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/include/chardev/char-fe.h b/include/chardev/char-fe.h
> index 71cd069478..c67271f1ba 100644
> --- a/include/chardev/char-fe.h
> +++ b/include/chardev/char-fe.h
> @@ -113,7 +113,7 @@ void qemu_chr_fe_accept_input(CharBackend *be);
>  /**
>   * @qemu_chr_fe_disconnect:
>   *
> - * Close a fd accpeted by character backend.
> + * Close a fd accepted by character backend.
>   * Without associated Chardev, do nothing.
>   */
>  void qemu_chr_fe_disconnect(CharBackend *be);
> @@ -122,7 +122,7 @@ void qemu_chr_fe_disconnect(CharBackend *be);
>   * @qemu_chr_fe_wait_connected:
>   *
>   * Wait for characted backend to be connected, return < 0 on error or
> - * if no assicated Chardev.
> + * if no associated Chardev.
>   */
>  int qemu_chr_fe_wait_connected(CharBackend *be, Error **errp);
>  
> @@ -186,7 +186,7 @@ guint qemu_chr_fe_add_watch(CharBackend *be, GIOCondition 
> cond,
>   * @buf the data
>   * @len the number of bytes to send
>   *
> - * Returns: the number of bytes consumed (0 if no assicated Chardev)
> + * Returns: the number of bytes consumed (0 if no associated Chardev)
>   */
>  int qemu_chr_fe_write(CharBackend *be, const uint8_t *buf, int len);
>  
> @@ -201,7 +201,7 @@ int qemu_chr_fe_write(CharBackend *be, const uint8_t 
> *buf, int len);
>   * @buf the data
>   * @len the number of bytes to send
>   *
> - * Returns: the number of bytes consumed (0 if no assicated Chardev)
> + * Returns: the number of bytes consumed (0 if no associated Chardev)
>   */
>  int qemu_chr_fe_write_all(CharBackend *be, const uint8_t *buf, int len);
>  
> @@ -213,7 +213,7 @@ int qemu_chr_fe_write_all(CharBackend *be, const uint8_t 
> *buf, int len);
>   * @buf the data buffer
>   * @len the number of bytes to read
>   *
> - * Returns: the number of bytes read (0 if no assicated Chardev)
> + * Returns: the number of bytes read (0 if no associated Chardev)
>   */
>  int qemu_chr_fe_read_all(CharBackend *be, uint8_t *buf, int len);
>  
> 

Queued, thanks.

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]