diff options
author | Karel Zak | 2014-06-06 09:49:35 +0200 |
---|---|---|
committer | Karel Zak | 2014-06-06 09:49:35 +0200 |
commit | ee312c654b0c9f2e516fca729cb54c6c0ce42524 (patch) | |
tree | e430692e954f4c68c63308f5cf1f801f5e4474cb /libmount/python | |
parent | cfdisk: resize UI on SIGWINCH (diff) | |
download | kernel-qcow2-util-linux-ee312c654b0c9f2e516fca729cb54c6c0ce42524.tar.gz kernel-qcow2-util-linux-ee312c654b0c9f2e516fca729cb54c6c0ce42524.tar.xz kernel-qcow2-util-linux-ee312c654b0c9f2e516fca729cb54c6c0ce42524.zip |
docs: fix "behaviour" vs. "behavior"
Sometimes we use "behaviour" and "behavior" in the same text, let's
use "behavior" only everywhere.
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1011068
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libmount/python')
-rw-r--r-- | libmount/python/context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmount/python/context.c b/libmount/python/context.c index 408c8bd75..623239436 100644 --- a/libmount/python/context.c +++ b/libmount/python/context.c @@ -627,7 +627,7 @@ static int Context_set_mflags(ContextObjext *self, PyObject *value, void *closur return mnt_context_set_mflags(self->cxt, flags); } -/* returns a flags integer (behaviour differs from C API) */ +/* returns a flags integer (behavior differs from C API) */ static PyObject *Context_get_mflags(ContextObjext *self) { unsigned long flags; @@ -641,7 +641,7 @@ static PyObject *Context_get_mflags(ContextObjext *self) return result; } -/* returns a flags integer (behaviour differs from C API) */ +/* returns a flags integer (behavior differs from C API) */ static PyObject *Context_get_user_mflags(ContextObjext *self) { unsigned long flags; |