aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/pages/projects/change.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2016-05-10 20:52:14 +0200
committerAdrian Kummerlaender2016-05-10 20:52:14 +0200
commitbb4b5ef78b8070662b65749ffb7284e8e2350d62 (patch)
treedc01bf4bf95552b26f3bbaec1f335a3c13517cdf /source/00_content/pages/projects/change.md
parente0686902eb6ae0bec31a9d679602971822ba6381 (diff)
downloadblog.kummerlaender.eu-bb4b5ef78b8070662b65749ffb7284e8e2350d62.tar
blog.kummerlaender.eu-bb4b5ef78b8070662b65749ffb7284e8e2350d62.tar.gz
blog.kummerlaender.eu-bb4b5ef78b8070662b65749ffb7284e8e2350d62.tar.bz2
blog.kummerlaender.eu-bb4b5ef78b8070662b65749ffb7284e8e2350d62.tar.lz
blog.kummerlaender.eu-bb4b5ef78b8070662b65749ffb7284e8e2350d62.tar.xz
blog.kummerlaender.eu-bb4b5ef78b8070662b65749ffb7284e8e2350d62.tar.zst
blog.kummerlaender.eu-bb4b5ef78b8070662b65749ffb7284e8e2350d62.zip
Fix disconcerting usages of `it's` instead of `its`
Diffstat (limited to 'source/00_content/pages/projects/change.md')
-rw-r--r--source/00_content/pages/projects/change.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/00_content/pages/projects/change.md b/source/00_content/pages/projects/change.md
index 7fed4e5..7c30e6a 100644
--- a/source/00_content/pages/projects/change.md
+++ b/source/00_content/pages/projects/change.md
@@ -24,7 +24,7 @@ This project consists of a library `libChangeLog` and a matching wrapper bash sc
## Filtering
-Due to it's nature of interposing low level system calls such as `write` and `unlink` the library by default exposes lots of the internal write logic of the wrapped application. For instance it reports _vim_ creating a file called `4913` to verify the target directory's writability as well as the creation of various temporary backup files. While this is certainly interesting for debugging purposes it hinders the library's goal of providing a higher level summary consisting primarily of the actions the user explicity performed such as the changed file contents.
+Due to its nature of interposing low level system calls such as `write` and `unlink` the library by default exposes lots of the internal write logic of the wrapped application. For instance it reports _vim_ creating a file called `4913` to verify the target directory's writability as well as the creation of various temporary backup files. While this is certainly interesting for debugging purposes it hinders the library's goal of providing a higher level summary consisting primarily of the actions the user explicity performed such as the changed file contents.
To solve this problem one may provide a list of regular expressions to be matched against the file paths via the `CHANGE_LOG_IGNORE_PATTERN_PATH` environment variable.