aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2016-08-31 17:02:16 +0200
committerAdrian Kummerlaender2016-08-31 17:02:16 +0200
commitd7479d51880b5813ffe7ef4b84b1a93411aa77fe (patch)
treeaa0593379134092d80eb150bc6b09cf992e0642a
parent24277d8d130e9080c8339fb0743975de914fb8ba (diff)
downloadblog.kummerlaender.eu-d7479d51880b5813ffe7ef4b84b1a93411aa77fe.tar
blog.kummerlaender.eu-d7479d51880b5813ffe7ef4b84b1a93411aa77fe.tar.gz
blog.kummerlaender.eu-d7479d51880b5813ffe7ef4b84b1a93411aa77fe.tar.bz2
blog.kummerlaender.eu-d7479d51880b5813ffe7ef4b84b1a93411aa77fe.tar.lz
blog.kummerlaender.eu-d7479d51880b5813ffe7ef4b84b1a93411aa77fe.tar.xz
blog.kummerlaender.eu-d7479d51880b5813ffe7ef4b84b1a93411aa77fe.tar.zst
blog.kummerlaender.eu-d7479d51880b5813ffe7ef4b84b1a93411aa77fe.zip
Typo fix
-rw-r--r--source/00_content/articles/2016-02-21_notes_on_function_interposition_in_cpp.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/00_content/articles/2016-02-21_notes_on_function_interposition_in_cpp.md b/source/00_content/articles/2016-02-21_notes_on_function_interposition_in_cpp.md
index 8a0bd12..27fb967 100644
--- a/source/00_content/articles/2016-02-21_notes_on_function_interposition_in_cpp.md
+++ b/source/00_content/articles/2016-02-21_notes_on_function_interposition_in_cpp.md
@@ -1,6 +1,6 @@
# Notes on function interposition in C++
-To counterbalance the fastly increased amount of time I am spending on purely theoretical topics since I started studying mathematics, my most recent leisure time project was to familiarize myself with function interposition in C++ on Linux. This article will document some of the ins and outs of using this technique in an actual project in addition to describing how the acquisition of the interposed function's pointer may be reasonably abstracted by a function template.
+To counterbalance the vastly increased amount of time I am spending on purely theoretical topics since I started studying mathematics, my most recent leisure time project was to familiarize myself with function interposition in C++ on Linux. This article will document some of the ins and outs of using this technique in an actual project in addition to describing how the acquisition of the interposed function's pointer may be reasonably abstracted by a function template.
## Basics