mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-30 05:39:03 +01:00
Correct mispelt 'd' and 'e' words.
This commit is contained in:
parent
12c0594db6
commit
e9dce11e50
@ -107,7 +107,7 @@ public:
|
||||
/// Returns the name of the Cipher.
|
||||
|
||||
virtual CryptoTransform* createEncryptor() = 0;
|
||||
/// Creates an encrytor object to be used with a CryptoStream.
|
||||
/// Creates an encryptor object to be used with a CryptoStream.
|
||||
|
||||
virtual CryptoTransform* createDecryptor() = 0;
|
||||
/// Creates a decryptor object to be used with a CryptoStream.
|
||||
|
@ -45,10 +45,10 @@ public:
|
||||
/// Returns the name of the cipher.
|
||||
|
||||
CryptoTransform* createEncryptor();
|
||||
/// Creates an encrytor object.
|
||||
/// Creates an encryptor object.
|
||||
|
||||
CryptoTransform* createDecryptor();
|
||||
/// Creates a decrytor object.
|
||||
/// Creates a decryptor object.
|
||||
|
||||
private:
|
||||
CipherKey _key;
|
||||
|
@ -52,10 +52,10 @@ public:
|
||||
/// Returns the name of the Cipher.
|
||||
|
||||
CryptoTransform* createEncryptor();
|
||||
/// Creates an encrytor object.
|
||||
/// Creates an encryptor object.
|
||||
|
||||
CryptoTransform* createDecryptor();
|
||||
/// Creates a decrytor object.
|
||||
/// Creates a decryptor object.
|
||||
|
||||
private:
|
||||
RSAKey _key;
|
||||
|
@ -104,7 +104,7 @@ public:
|
||||
/// Table must exist in the target database. To disable archiving,
|
||||
/// set this property to empty string.
|
||||
///
|
||||
/// * async: Indicates asynchronous execution. When excuting asynchronously,
|
||||
/// * async: Indicates asynchronous execution. When executing asynchronously,
|
||||
/// messages are sent to the target using asynchronous execution.
|
||||
/// However, prior to the next message being processed and sent to
|
||||
/// the target, the previous operation must have been either completed
|
||||
|
@ -170,7 +170,7 @@ public:
|
||||
protected:
|
||||
void setConnectionString(const std::string& connectionString);
|
||||
/// Sets the connection string. Should only be called on
|
||||
/// disconnetced sessions. Throws InvalidAccessException when called on
|
||||
/// disconnected sessions. Throws InvalidAccessException when called on
|
||||
/// a connected session.
|
||||
|
||||
private:
|
||||
|
@ -50,7 +50,7 @@ class Data_API Statement
|
||||
/// It does not contain code of its own.
|
||||
/// Its main purpose is to forward calls to the concrete StatementImpl stored inside.
|
||||
/// Statement execution can be synchronous or asynchronous.
|
||||
/// Synchronous ececution is achieved through execute() call, while asynchronous is
|
||||
/// Synchronous execution is achieved through execute() call, while asynchronous is
|
||||
/// achieved through executeAsync() method call.
|
||||
/// An asynchronously executing statement should not be copied during the execution.
|
||||
///
|
||||
@ -68,7 +68,7 @@ class Data_API Statement
|
||||
///
|
||||
/// See individual functions documentation for more details.
|
||||
///
|
||||
/// Statement owns the RowFormatter, which can be provided externaly through setFormatter()
|
||||
/// Statement owns the RowFormatter, which can be provided externally through setFormatter()
|
||||
/// member function.
|
||||
/// If no formatter is externally supplied to the statement, the SimpleRowFormatter is lazy
|
||||
/// created and used.
|
||||
|
@ -36,7 +36,7 @@ class Data_API Transaction
|
||||
/// transaction is in progress. If not, a new transaction is created.
|
||||
/// When the Transaction is destroyed, and commit() has been called,
|
||||
/// nothing is done. Otherwise, the current transaction is rolled back.
|
||||
/// See Transaction for more detaisl nad purpose of this template.
|
||||
/// See Transaction for more details and purpose of this template.
|
||||
{
|
||||
public:
|
||||
Transaction(Poco::Data::Session& session, Poco::Logger* pLogger = 0);
|
||||
|
@ -97,7 +97,7 @@ class TypeHandler: public AbstractTypeHandler
|
||||
///
|
||||
/// static void extract(std::size_t pos, Person& obj, const Person& defVal, AbstractExtractor::Ptr pExt)
|
||||
/// {
|
||||
/// // defVal is the default person we should use if we encunter NULL entries, so we take the individual fields
|
||||
/// // defVal is the default person we should use if we encounter NULL entries, so we take the individual fields
|
||||
/// // as defaults. You can do more complex checking, ie return defVal if only one single entry of the fields is null etc...
|
||||
/// poco_assert_dbg (!pExt.isNull());
|
||||
/// std::string lastName;
|
||||
|
@ -87,7 +87,7 @@ public:
|
||||
/// If for the key already an entry exists, it will be overwritten.
|
||||
/// The difference to add is that no remove or add events are thrown in this case,
|
||||
/// just a simply silent update is performed
|
||||
/// If the key doesnot exist the behavior is equal to add, ie. an add event is thrown
|
||||
/// If the key does not exist the behavior is equal to add, ie. an add event is thrown
|
||||
{
|
||||
typename TMutex::ScopedLock lock(_mutex);
|
||||
doUpdate(key, val);
|
||||
@ -107,7 +107,7 @@ public:
|
||||
/// If for the key already an entry exists, it will be overwritten.
|
||||
/// The difference to add is that no remove or add events are thrown in this case,
|
||||
/// just an Update is thrown
|
||||
/// If the key doesnot exist the behavior is equal to add, ie. an add event is thrown
|
||||
/// If the key does not exist the behavior is equal to add, ie. an add event is thrown
|
||||
{
|
||||
typename TMutex::ScopedLock lock(_mutex);
|
||||
doUpdate(key, val);
|
||||
|
@ -516,7 +516,7 @@ ValueType AnyCast(Any& operand)
|
||||
/// Example Usage:
|
||||
/// MyType tmp = AnyCast<MyType>(anAny).
|
||||
/// Will throw a BadCastException if the cast fails.
|
||||
/// Dont use an AnyCast in combination with references, i.e. MyType& tmp = ... or const MyType& tmp = ...
|
||||
/// Do not use an AnyCast in combination with references, i.e. MyType& tmp = ... or const MyType& tmp = ...
|
||||
/// Some compilers will accept this code although a copy is returned. Use the RefAnyCast in
|
||||
/// these cases.
|
||||
{
|
||||
@ -535,7 +535,7 @@ ValueType AnyCast(const Any& operand)
|
||||
/// Example Usage:
|
||||
/// MyType tmp = AnyCast<MyType>(anAny).
|
||||
/// Will throw a BadCastException if the cast fails.
|
||||
/// Dont use an AnyCast in combination with references, i.e. MyType& tmp = ... or const MyType& = ...
|
||||
/// Do not use an AnyCast in combination with references, i.e. MyType& tmp = ... or const MyType& = ...
|
||||
/// Some compilers will accept this code although a copy is returned. Use the RefAnyCast in
|
||||
/// these cases.
|
||||
{
|
||||
|
@ -152,7 +152,7 @@ class Foundation_API FileChannel: public Channel
|
||||
// or whether it's allowed to stay in the system's file buffer for some time.
|
||||
/// Valid values are:
|
||||
///
|
||||
/// * true: Every essages is immediately flushed to the log file (default).
|
||||
/// * true: Every message is immediately flushed to the log file (default).
|
||||
/// * false: Messages are not immediately flushed to the log file.
|
||||
///
|
||||
/// The rotateOnOpen property specifies whether an existing log file should be
|
||||
|
@ -75,7 +75,7 @@ class Foundation_API SimpleFileChannel: public Channel
|
||||
// or whether it's allowed to stay in the system's file buffer for some time.
|
||||
/// Valid values are:
|
||||
///
|
||||
/// * true: Every essages is immediately flushed to the log file (default).
|
||||
/// * true: Every message is immediately flushed to the log file (default).
|
||||
/// * false: Messages are not immediately flushed to the log file.
|
||||
///
|
||||
{
|
||||
|
@ -42,7 +42,7 @@ class Foundation_API ThreadPool
|
||||
/// Threads in a thread pool are re-used once they become
|
||||
/// available again.
|
||||
/// The thread pool always keeps a minimum number of threads
|
||||
/// running. If the demans for threads increases, additional
|
||||
/// running. If the demand for threads increases, additional
|
||||
/// threads are created. Once the demand for threads sinks
|
||||
/// again, no-longer used threads are stopped and removed
|
||||
/// from the pool.
|
||||
|
@ -69,7 +69,7 @@ class JSON_API Template
|
||||
///
|
||||
/// <? ifexist query ?> <? else ?> <? endif ?>
|
||||
/// ----
|
||||
/// This can be used to check the existance of the value.
|
||||
/// This can be used to check the existence of the value.
|
||||
/// Use this for example when a zero value is ok (which returns false for <? if ?>.
|
||||
///
|
||||
/// <? for variable query ?> <? endfor ?>
|
||||
|
@ -150,7 +150,7 @@ public:
|
||||
/// Returns the interface adapter name.
|
||||
///
|
||||
/// On Windows platforms, this is the network adapter LUID.
|
||||
/// The adapter name is used by some Windows Net APIs like Dhcp.
|
||||
/// The adapter name is used by some Windows Net APIs like DHCP.
|
||||
///
|
||||
/// On other platforms this is the same as name().
|
||||
|
||||
@ -183,7 +183,7 @@ public:
|
||||
/// Returns the broadcast address for this network interface.
|
||||
|
||||
const IPAddress& destAddress(unsigned index = 0) const;
|
||||
/// Returns the IPv4 point-to-point destiation address for this network interface.
|
||||
/// Returns the IPv4 point-to-point destination address for this network interface.
|
||||
|
||||
const MACAddress& macAddress() const;
|
||||
/// Returns MAC (Media Access Control) address for the interface.
|
||||
|
@ -72,7 +72,7 @@ public:
|
||||
SYSLOG_NTP = (12<<3), /// ntp subsystem
|
||||
SYSLOG_LOGAUDIT = (13<<3), /// log audit
|
||||
SYSLOG_LOGALERT = (14<<3), /// log alert
|
||||
SYSLOG_CLOCK = (15<<3), /// clock deamon
|
||||
SYSLOG_CLOCK = (15<<3), /// clock daemon
|
||||
SYSLOG_LOCAL0 = (16<<3), /// reserved for local use
|
||||
SYSLOG_LOCAL1 = (17<<3), /// reserved for local use
|
||||
SYSLOG_LOCAL2 = (18<<3), /// reserved for local use
|
||||
|
@ -321,7 +321,7 @@ public:
|
||||
/// Draws an arc.
|
||||
|
||||
void ellipse(float x, float y, float xRadius, float yRadius);
|
||||
/// Draws an ellips.
|
||||
/// Draws an ellipse.
|
||||
|
||||
void stroke();
|
||||
/// Paints the current path.
|
||||
|
@ -45,7 +45,7 @@ class XML_API DOMObject
|
||||
/// For every call to duplicate() there must be a matching
|
||||
/// call to release().
|
||||
/// An object obtained via any other way must not be
|
||||
/// released, except ownership of it has been explicitely
|
||||
/// released, except ownership of it has been explicitly
|
||||
/// taken with a call to duplicate().
|
||||
///
|
||||
/// While DOMObjects are safe for use in multithreaded programs,
|
||||
|
Loading…
x
Reference in New Issue
Block a user