From ab2fd4bb697d5b897e0253d964878d5d8dbd5743 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 2 Nov 2022 15:52:38 +0100 Subject: [PATCH] fixup! WIP: posts: add mutiple-dispatch-in-c++ --- content/posts/2022-06-07-multiple-dispatch-in-c++/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2022-06-07-multiple-dispatch-in-c++/index.md b/content/posts/2022-06-07-multiple-dispatch-in-c++/index.md index f5a307e..c012b08 100644 --- a/content/posts/2022-06-07-multiple-dispatch-in-c++/index.md +++ b/content/posts/2022-06-07-multiple-dispatch-in-c++/index.md @@ -103,7 +103,7 @@ struct Filesystem { You can then write `PosixFilesystem` which makes use of the POSIX API and interact with actual on-disk data, `MockFilesystem` which only works in-memory -and can be used for tests only, etc... +and can be used for testing, etc... ## Double dispatch