From a4ecd42bf365433e039f1130a196129e81ad2f43 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 24 Nov 2023 19:44:04 +0100 Subject: [PATCH] Fix it's -> its Signed-off-by: Stefan Weil --- README.md | 2 +- doc/libpkgconf-dependency.rst | 2 +- libpkgconf/dependency.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d16f5f..5bdef54 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ As previously mentioned, pkgconf makes optimizations to the linker flags in both case of static and shared linking in order to avoid overlinking binaries and also simplifies the `CFLAGS` and `LIBS` output of the pkgconf tool for improved readability. -This functionality depends on the pkg-config module properly declaring it's dependency +This functionality depends on the pkg-config module properly declaring its dependency tree instead of using `Libs` and `Cflags` fields to directly link against other modules which have pkg-config metadata files installed. diff --git a/doc/libpkgconf-dependency.rst b/doc/libpkgconf-dependency.rst index a31405a..ce70d6c 100644 --- a/doc/libpkgconf-dependency.rst +++ b/doc/libpkgconf-dependency.rst @@ -51,7 +51,7 @@ The `dependency` module provides support for building `dependency lists` (the ba .. c:function:: void pkgconf_dependency_free(pkgconf_list_t *list) - Release a dependency list and it's child dependency nodes. + Release a dependency list and its child dependency nodes. :param pkgconf_list_t* list: The dependency list to release. :return: nothing diff --git a/libpkgconf/dependency.c b/libpkgconf/dependency.c index 4cee691..a00a541 100644 --- a/libpkgconf/dependency.c +++ b/libpkgconf/dependency.c @@ -262,7 +262,7 @@ pkgconf_dependency_unref(pkgconf_client_t *client, pkgconf_dependency_t *dep) * * .. c:function:: void pkgconf_dependency_free(pkgconf_list_t *list) * - * Release a dependency list and it's child dependency nodes. + * Release a dependency list and its child dependency nodes. * * :param pkgconf_list_t* list: The dependency list to release. * :return: nothing