aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2007-12-13 21:54:09 +0000
committerdrh <drh@noemail.net>2007-12-13 21:54:09 +0000
commit85b623f2f9fd6a5a842539b504c0cc56efc8e366 (patch)
tree901bf00480ee32b9e670ca4bb0b1d35fe65ed3d0 /src/os_unix.c
parent31da1d796b8711e3968fd43bdb8da4b21cc32a98 (diff)
downloadsqlite-85b623f2f9fd6a5a842539b504c0cc56efc8e366.tar.gz
sqlite-85b623f2f9fd6a5a842539b504c0cc56efc8e366.zip
Change all instances of "it's" in comments to either "its" or "it is",
as appropriate, in case the comments are ever again read by a pedantic grammarian. Ticket #2840. (CVS 4629) FossilOrigin-Name: 4e91a267febda572e7239f0f1cc66b3102558c36
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 29a1933b3..73fb65f5e 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -128,7 +128,7 @@ struct unixFile {
** The DJGPP compiler environment looks mostly like Unix, but it
** lacks the fcntl() system call. So redefine fcntl() to be something
** that always succeeds. This means that locking does not occur under
-** DJGPP. But it's DOS - what did you expect?
+** DJGPP. But it is DOS - what did you expect?
*/
#ifdef __DJGPP__
# define fcntl(A,B,C) 0
@@ -567,7 +567,7 @@ static sqlite3LockingStyle sqlite3TestLockingStyle(
/*
** Examines the f_fstypename entry in the statfs structure as returned by
** stat() for the file system hosting the database file, assigns the
-** appropriate locking style based on it's value. These values and
+** appropriate locking style based on its value. These values and
** assignments are based on Darwin/OSX behavior and have not been tested on
** other systems.
*/
@@ -2035,7 +2035,7 @@ static int unixFileControl(sqlite3_file *id, int op, void *pArg){
**
** SQLite code assumes this function cannot fail. It also assumes that
** if two files are created in the same file-system directory (i.e.
-** a database and it's journal file) that the sector size will be the
+** a database and its journal file) that the sector size will be the
** same for both.
*/
static int unixSectorSize(sqlite3_file *id){