From 71a80e5896e3fc9c15989d4b6dc59c0e935c8724 Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 18 May 2016 09:56:43 +0200 Subject: [PATCH] Fixed: Typo in comment --- code/ryzom/tools/client/ryzom_installer/src/configfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp index 20ec6544b..1aa5bad04 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp @@ -348,7 +348,7 @@ QString CConfigFile::getClientArch() const #if defined(Q_OS_WIN) return QString("win%1").arg(m_use64BitsClient ? 64:32); #elif defined(Q_OS_MAC) - // only 64 bits clients under OS X, becure there not any 32 bits OS X version anymore + // only 64 bits clients under OS X, because there not any 32 bits OS X version anymore return "osx"; #else return QString("linux%1").arg(m_use64BitsClient ? 64:32);