aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/articles/2013-11-03_mapping_binary_structures_as_tuples_using_template_metaprogramming.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2016-02-21 21:53:35 +0100
committerAdrian Kummerlaender2016-02-21 21:54:49 +0100
commit064067b4c63de586c5923e35fd5d3411841c52ba (patch)
tree9ea316fc58a6a8b97ef22cdfc23815773f8baf90 /source/00_content/articles/2013-11-03_mapping_binary_structures_as_tuples_using_template_metaprogramming.md
parent2642b1b2d27edecbbd7ba9ff97d25ecae738e82d (diff)
downloadblog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.gz
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.bz2
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.lz
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.xz
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.tar.zst
blog.kummerlaender.eu-064067b4c63de586c5923e35fd5d3411841c52ba.zip
Fix possessive form of _library_
Diffstat (limited to 'source/00_content/articles/2013-11-03_mapping_binary_structures_as_tuples_using_template_metaprogramming.md')
-rw-r--r--source/00_content/articles/2013-11-03_mapping_binary_structures_as_tuples_using_template_metaprogramming.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/00_content/articles/2013-11-03_mapping_binary_structures_as_tuples_using_template_metaprogramming.md b/source/00_content/articles/2013-11-03_mapping_binary_structures_as_tuples_using_template_metaprogramming.md
index 4d1aaa2..5c82f05 100644
--- a/source/00_content/articles/2013-11-03_mapping_binary_structures_as_tuples_using_template_metaprogramming.md
+++ b/source/00_content/articles/2013-11-03_mapping_binary_structures_as_tuples_using_template_metaprogramming.md
@@ -14,7 +14,7 @@ differences in endianness and In-place modification of the structure fields.
## Mapping buffers as tuples
-To be able to easily work with structure definitions using template metaprogramming I am relying on the standard libraries [_std::tuple_](http://en.cppreference.com/w/cpp/utility/tuple)
+To be able to easily work with structure definitions using template metaprogramming I am relying on the standard library's [_std::tuple_](http://en.cppreference.com/w/cpp/utility/tuple)
template.
~~~