aboutsummaryrefslogtreecommitdiff
path: root/src/iso19111/internal.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-01-02 11:29:36 +0100
committerEven Rouault <even.rouault@spatialys.com>2019-01-02 11:29:36 +0100
commitbe5778fa90586abd431fc02375870d71d2e3ba78 (patch)
treea8b51f31a6161b0ccf6e3075fc32235b466a675e /src/iso19111/internal.cpp
parentd8d96cecce9c4ee3136e63e32d2ce952fa2ede56 (diff)
downloadPROJ-be5778fa90586abd431fc02375870d71d2e3ba78.tar.gz
PROJ-be5778fa90586abd431fc02375870d71d2e3ba78.zip
Typo fixes
Diffstat (limited to 'src/iso19111/internal.cpp')
-rw-r--r--src/iso19111/internal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/iso19111/internal.cpp b/src/iso19111/internal.cpp
index c43605d1..0c330d30 100644
--- a/src/iso19111/internal.cpp
+++ b/src/iso19111/internal.cpp
@@ -330,7 +330,7 @@ std::string toString(double val, int precision) {
#else
std::string toString(int val) {
- // use sqlite3 API that is slighly faster than std::ostringstream
+ // use sqlite3 API that is slightly faster than std::ostringstream
// with forcing the C locale. sqlite3_snprintf() emulates a C locale.
constexpr int BUF_SIZE = 16;
char szBuffer[BUF_SIZE];
@@ -339,7 +339,7 @@ std::string toString(int val) {
}
std::string toString(double val, int precision) {
- // use sqlite3 API that is slighly faster than std::ostringstream
+ // use sqlite3 API that is slightly faster than std::ostringstream
// with forcing the C locale. sqlite3_snprintf() emulates a C locale.
constexpr int BUF_SIZE = 32;
char szBuffer[BUF_SIZE];