diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-07-07 20:36:43 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-07-08 09:21:50 +0200 |
commit | 0eff4285eff1a5b6a220067adf605fbaaed2ccfe (patch) | |
tree | 481d7bea4fdacccc33cc7a0c12f451c0fdf4e46a /include/sax | |
parent | 2759edcbc143447fff9a28b8917c99e7a31a9564 (diff) |
Fix typo
Change-Id: Ib6c49ad6f8ec29e5ef49a46d4352fd58b182f75a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98296
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include/sax')
-rw-r--r-- | include/sax/fshelper.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sax/fshelper.hxx b/include/sax/fshelper.hxx index e4b5072345e2..f5d92eed1c50 100644 --- a/include/sax/fshelper.hxx +++ b/include/sax/fshelper.hxx @@ -161,7 +161,7 @@ private: typedef std::shared_ptr< FastSerializerHelper > FSHelperPtr; -// Helpers to make intention to pass optional attributes to *Element finctions explicit, instead of +// Helpers to make intention to pass optional attributes to *Element functions explicit, instead of // using `(condition) ? value.toUtf8().getStr() : nullptr` syntax. inline const char* UseIf(const char* s, bool bUse) { return bUse ? s : nullptr; } // OString, OUString |