From: John Wolfe Date: Tue, 27 Jul 2021 17:37:24 +0000 (-0700) Subject: Terminology cleanup in some comments. X-Git-Tag: stable-12.0.0~141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb8741edd1fe30dd423cf8533d63a4dc8bb39d8a;p=thirdparty%2Fopen-vm-tools.git Terminology cleanup in some comments. --- diff --git a/open-vm-tools/lib/file/filePosix.c b/open-vm-tools/lib/file/filePosix.c index c56f13650..8cbf4153d 100644 --- a/open-vm-tools/lib/file/filePosix.c +++ b/open-vm-tools/lib/file/filePosix.c @@ -1234,9 +1234,9 @@ bail: * Get the filesystem type number of the file system on which the * given file/directory resides. * - * Caller can specify either a pathname or an already opened fd of - * the file/dir whose filesystem he wants to determine. - * 'fd' takes precedence over 'pathName' so 'pathName' is used only + * Callers can specify either a pathname, or an already opened fd, + * of the file/dir whose filesystem they want to determine. + * 'fd' takes precedence over 'pathName', so 'pathName' is used only * if 'fd' is -1. * * Results: diff --git a/open-vm-tools/lib/include/vmci_defs.h b/open-vm-tools/lib/include/vmci_defs.h index f67ede306..8ce45b36f 100644 --- a/open-vm-tools/lib/include/vmci_defs.h +++ b/open-vm-tools/lib/include/vmci_defs.h @@ -466,7 +466,7 @@ typedef uint32 VMCIPrivilegeFlags; * a line in a store, for example, you walk up to the tail. * * consumerHead: the point in the queue from which the next element is - * dequeued. In other words, who is next in line is he who is at the + * dequeued. In other words, the next in line is the one at the * head of the line. * * Also, producerTail points to an empty byte in the Queue, whereas