diff options
author | pfg <pfg@FreeBSD.org> | 2016-05-02 20:16:29 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-05-02 20:16:29 +0000 |
commit | 8327dbfe4d5dbe83615076008f31eb5e01d4c01a (patch) | |
tree | 3a85b6c0bdd8e0e331529fb8c33efe7a62260f9c /sys/vm/vm_pageout.c | |
parent | 1940241a72554ef4377b60550cd0adfada3b3165 (diff) | |
download | FreeBSD-src-8327dbfe4d5dbe83615076008f31eb5e01d4c01a.zip FreeBSD-src-8327dbfe4d5dbe83615076008f31eb5e01d4c01a.tar.gz |
sys/vm: minor spelling fixes in comments.
No functional change.
Diffstat (limited to 'sys/vm/vm_pageout.c')
-rw-r--r-- | sys/vm/vm_pageout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index e981e8b..ffdcb61 100644 --- a/sys/vm/vm_pageout.c +++ b/sys/vm/vm_pageout.c @@ -447,7 +447,7 @@ more: ++pageout_count; ++ib; /* - * alignment boundry, stop here and switch directions. Do + * alignment boundary, stop here and switch directions. Do * not clear ib. */ if ((pindex - (ib - 1)) % vm_pageout_page_count == 0) @@ -477,7 +477,7 @@ more: /* * If we exhausted our forward scan, continue with the reverse scan - * when possible, even past a page boundry. This catches boundry + * when possible, even past a page boundary. This catches boundary * conditions. */ if (ib && pageout_count < vm_pageout_page_count) |