summaryrefslogtreecommitdiff
path: root/zen/i18n.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/i18n.h')
-rw-r--r--zen/i18n.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/i18n.h b/zen/i18n.h
index 32b6ed80..4f62fd4c 100644
--- a/zen/i18n.h
+++ b/zen/i18n.h
@@ -100,7 +100,7 @@ std::wstring translate(const std::wstring& singular, const std::wstring& plural,
inline
Global<const TranslationHandler>& getGlobalTranslationHandler()
{
- //getTranslator() may be called even after static objects of this translation unit are destroyed!
+ //getTranslator() may be called even after static objects of this translation unit are destroyed!
static Global<const TranslationHandler> inst; //external linkage even in header!
return inst;
}
bgstack15