From 85e5e4adccde0f364c81b7a698321d6f8b501c0d Mon Sep 17 00:00:00 2001 From: Stephen Webb Date: Wed, 24 Jul 2024 13:29:10 +1000 Subject: [PATCH] Fix typo --- src/site/markdown/extending.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/markdown/extending.md b/src/site/markdown/extending.md index 44acb056f..28b4cbd29 100644 --- a/src/site/markdown/extending.md +++ b/src/site/markdown/extending.md @@ -75,7 +75,7 @@ by calling, for example, `NullWriterAppender::registerClass()`. To avoid [Static Initialization Order Fiasco](https://en.cppreference.com/w/cpp/language/siof) when configuring Log4cxx during static initialization (as in [the recommended runtime configuration technique]) -you should put your extenstion classes (and the `IMPLEMENT_LOG4CXX_OBJECT` macro) +you should put your extension classes (and the `IMPLEMENT_LOG4CXX_OBJECT` macro) in a dynamic library (DSO/DLL) that is loaded before loading the Log4cxx configuration. Alternatively, you could call `NullWriterAppender::registerClass()` before loading the configuration.