diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2012-07-18 20:28:19 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2012-07-18 20:28:19 +0000 |
commit | bc1d0d0436305d0b89cdf332bb55677c118e3600 (patch) | |
tree | 5532274a5773802dc2fc6e269407caf0f388ed91 /sys/uvm | |
parent | ef3c3e8393591bcf49a235d7719f05afa0934cbd (diff) |
comment typo; s/lineair/linear/
Diffstat (limited to 'sys/uvm')
-rw-r--r-- | sys/uvm/uvm_addr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_addr.c b/sys/uvm/uvm_addr.c index 298c24aa2a8..b7b605c7be1 100644 --- a/sys/uvm/uvm_addr.c +++ b/sys/uvm/uvm_addr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_addr.c,v 1.4 2012/06/06 04:54:36 matthew Exp $ */ +/* $OpenBSD: uvm_addr.c,v 1.5 2012/07/18 20:28:18 matthew Exp $ */ /* * Copyright (c) 2011 Ariane van der Steldt <ariane@stack.nl> @@ -343,7 +343,7 @@ uvm_addr_align_back(vaddr_t addr, vaddr_t align, vaddr_t offset) /* * Directional first fit. * - * Do a lineair search for free space, starting at addr in entry. + * Do a linear search for free space, starting at addr in entry. * direction == 1: search forward * direction == -1: search backward * |