From 48443591f293f8a6d8490b64aa97d670d010895d Mon Sep 17 00:00:00 2001 From: Morgan Creekmore Date: Fri, 12 Jan 2024 19:28:24 -0600 Subject: [PATCH] Fix readability --- content/posts/elf-shared-library-version.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/posts/elf-shared-library-version.md b/content/posts/elf-shared-library-version.md index 855c877..9e662a0 100644 --- a/content/posts/elf-shared-library-version.md +++ b/content/posts/elf-shared-library-version.md @@ -9,11 +9,11 @@ tags = ["Linux"] *How to embed version information into an ELF shared library?* -Here are the methods I discovered for embedding version information. +Here are the methods I have used for embedding version information. -This will cover embedding a product/release version in libraries distributed outside a package. Packages have their own version that can be referenced, so we don't need to embed a version. +These methods are for embedding a version into libraries distributed outside of a package. Packages have their own version information, so we don't need to embed one in the library. ## What about the ABI version?