Skip to content

Commit

Permalink
Fix documentation and some comments (article, grammar)
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
  • Loading branch information
stweil authored and Michael Tokarev committed Jan 24, 2017
1 parent ebee9df commit 736a83f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion qemu-doc.texi
Expand Up @@ -1037,7 +1037,7 @@ qemu-system-i386 -iscsi initiator-name=iqn.qemu.test:my-initiator \
@node disk_images_gluster
@subsection GlusterFS disk images

GlusterFS is an user space distributed file system.
GlusterFS is a user space distributed file system.

You can boot from the GlusterFS disk image with the command:
@example
Expand Down
2 changes: 1 addition & 1 deletion qemu-options.hx
Expand Up @@ -2589,7 +2589,7 @@ qemu-system-i386 --drive file=sheepdog://192.0.2.1:30000/MyVirtualMachine
See also @url{http://http://www.osrg.net/sheepdog/}.

@item GlusterFS
GlusterFS is an user space distributed file system.
GlusterFS is a user space distributed file system.
QEMU supports the use of GlusterFS volumes for hosting VM disk images using
TCP, Unix Domain Sockets and RDMA transport protocols.

Expand Down
4 changes: 2 additions & 2 deletions util/uri.c
Expand Up @@ -342,7 +342,7 @@ rfc3986_parse_port(URI *uri, const char **str)
* @uri: pointer to an URI structure
* @str: the string to analyze
*
* Parse an user informations part and fills in the appropriate fields
* Parse a user information part and fill in the appropriate fields
* of the @uri structure
*
* userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
Expand Down Expand Up @@ -508,7 +508,7 @@ rfc3986_parse_authority(URI *uri, const char **str)

cur = *str;
/*
* try to parse an userinfo and check for the trailing @
* try to parse a userinfo and check for the trailing @
*/
ret = rfc3986_parse_user_info(uri, &cur);
if ((ret != 0) || (*cur != '@'))
Expand Down

0 comments on commit 736a83f

Please sign in to comment.