Fix typos in comments, documentation and strings (#1615)

All of them were found using codespell.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil
2017-07-06 00:17:38 +02:00
committed by Aleksandar Fabijanic
parent a9598960e4
commit 8ccee8928c
56 changed files with 143 additions and 143 deletions

View File

@@ -28,7 +28,7 @@
// from a DLL simpler. All files within this DLL are compiled with the ODBC_EXPORTS
// symbol defined on the command line. this symbol should not be defined on any project
// that uses this DLL. This way any other project whose source files include this file see
// ODBC_API functions as being imported from a DLL, wheras this DLL sees symbols
// ODBC_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
//
#if defined(_WIN32) && defined(POCO_DLL)

View File

@@ -58,7 +58,7 @@ public:
/// Prepares the statement for execution.
void bindParams(const InputParameterVector& anInputParameterVector);
/// Binds the params - REQUIRED if the statment has input parameters/placeholders
/// Binds the params - REQUIRED if the statement has input parameters/placeholders
/// Pointer and list elements must stay valid for the lifetime of the StatementExecutor!
void execute();