]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
libkmod/README: fix grammar
authorTobias Stoeckmann <tobias@stoeckmann.org>
Thu, 19 Jun 2025 16:54:54 +0000 (18:54 +0200)
committerLucas De Marchi <lucas.de.marchi@gmail.com>
Fri, 27 Jun 2025 15:58:35 +0000 (10:58 -0500)
Co-authored-by: Emil Velikov <emil.l.velikov@gmail.com>
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
Link: https://github.com/kmod-project/kmod/pull/378
Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
libkmod/README

index 3e1c8dcdc98c07f70615942355d16d010dc8c772..f71696f5f45399d6e224ee613187da6267255d26 100644 (file)
@@ -3,18 +3,19 @@ libkmod - linux kernel module handling library
 ABSTRACT
 ========
 
-libkmod was created to allow programs to easily insert, remove and
-list modules, also checking its properties, dependencies and aliases.
+libkmod was created to allow programs to easily insert, remove and list modules,
+also checking their properties, dependencies and aliases.
 
-there is no shared/global context information and it can be used by
-multiple sites on a single program, also being able to be used from
-threads, although it's not thread safe (you must lock explicitly).
+The library does not keep a shared/global context information, thus it can be
+used by multiple sites on a single program. One is able to use libkmod from
+threads, although the user must lock explicitly, since the library is not thread
+safe.
 
 
 OVERVIEW
 ========
 
-Every user should create and manage it's own library context with:
+All users should create and manage their own library context with:
 
    struct kmod_ctx *ctx = kmod_new(kernel_dirname);
    kmod_unref(ctx);