mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-31 07:18:36 -06:00
fixtypo
[skip ci]
This commit is contained in:
@@ -12,7 +12,7 @@ TINY_SYSTEM_HEADER
|
||||
|
||||
TINYORM_BEGIN_COMMON_NAMESPACE
|
||||
|
||||
/*! Namespace constains common chars and strings. */
|
||||
/*! Namespace contains common chars and strings. */
|
||||
namespace Orm::Constants
|
||||
{
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ TINY_SYSTEM_HEADER
|
||||
|
||||
TINYORM_BEGIN_COMMON_NAMESPACE
|
||||
|
||||
/*! Namespace constains common chars and strings. */
|
||||
/*! Namespace contains common chars and strings. */
|
||||
namespace Orm::Constants
|
||||
{
|
||||
|
||||
|
||||
@@ -23,13 +23,13 @@ namespace Orm::Query::Concerns
|
||||
|
||||
/*! Copy constructor. */
|
||||
inline BuildsQueries(const BuildsQueries &) = default;
|
||||
/*! Deleted copy assignment operator (QueryBuilder class constains reference and
|
||||
/*! Deleted copy assignment operator (QueryBuilder class contains reference and
|
||||
const). */
|
||||
BuildsQueries &operator=(const BuildsQueries &) = delete;
|
||||
|
||||
/*! Move constructor. */
|
||||
inline BuildsQueries(BuildsQueries &&) = default;
|
||||
/*! Deleted move assignment operator (QueryBuilder class constains reference and
|
||||
/*! Deleted move assignment operator (QueryBuilder class contains reference and
|
||||
const). */
|
||||
BuildsQueries &operator=(BuildsQueries &&) = delete;
|
||||
|
||||
|
||||
@@ -21,12 +21,12 @@ namespace Orm::Query
|
||||
|
||||
/*! Copy constructor. */
|
||||
inline JoinClause(const JoinClause &) = default;
|
||||
/*! Deleted copy assignment operator (class constains reference and const). */
|
||||
/*! Deleted copy assignment operator (class contains reference and const). */
|
||||
JoinClause &operator=(const JoinClause &) = delete;
|
||||
|
||||
/*! Move constructor. */
|
||||
inline JoinClause(JoinClause &&) noexcept = default;
|
||||
/*! Deleted move assignment operator (class constains reference and const). */
|
||||
/*! Deleted move assignment operator (class contains reference and const). */
|
||||
JoinClause &operator=(JoinClause &&) = delete;
|
||||
|
||||
/*! Virtual destructor. */
|
||||
|
||||
@@ -58,12 +58,12 @@ namespace Orm::Query
|
||||
|
||||
/*! Copy constructor. */
|
||||
inline Builder(const Builder &) = default;
|
||||
/*! Deleted copy assignment operator (class constains reference and const). */
|
||||
/*! Deleted copy assignment operator (class contains reference and const). */
|
||||
Builder &operator=(const Builder &) = delete;
|
||||
|
||||
/*! Move constructor. */
|
||||
inline Builder(Builder &&) noexcept = default;
|
||||
/*! Deleted move assignment operator (class constains reference and const). */
|
||||
/*! Deleted move assignment operator (class contains reference and const). */
|
||||
Builder &operator=(Builder &&) = delete;
|
||||
|
||||
/* Retrieving results */
|
||||
|
||||
@@ -12,7 +12,7 @@ TINY_SYSTEM_HEADER
|
||||
|
||||
TINYORM_BEGIN_COMMON_NAMESPACE
|
||||
|
||||
/*! Namespace constains common chars and strings used in the Schema. */
|
||||
/*! Namespace contains common chars and strings used in the Schema. */
|
||||
namespace Orm::SchemaNs
|
||||
{
|
||||
namespace Constants
|
||||
|
||||
@@ -11,7 +11,7 @@ TINY_SYSTEM_HEADER
|
||||
|
||||
TINYORM_BEGIN_COMMON_NAMESPACE
|
||||
|
||||
/*! Namespace constains common chars and strings used in the Schema. */
|
||||
/*! Namespace contains common chars and strings used in the Schema. */
|
||||
namespace Orm::SchemaNs
|
||||
{
|
||||
namespace Constants
|
||||
|
||||
@@ -131,11 +131,11 @@ namespace Support
|
||||
bool m_isSetPivotModel = false;
|
||||
|
||||
private:
|
||||
/*! Throw if the model name constains a namespace or path. */
|
||||
/*! Throw if the model name contains a namespace or path. */
|
||||
static void throwIfContainsNamespaceOrPath(
|
||||
const std::vector<QStringList> &classNames, const QString &source,
|
||||
const QString &commandType = QStringLiteral("model"));
|
||||
/*! Throw if the model name constains a namespace or path. */
|
||||
/*! Throw if the model name contains a namespace or path. */
|
||||
static void throwIfContainsNamespaceOrPath(
|
||||
const QStringList &classNames, const QString &source,
|
||||
const QString &commandType = QStringLiteral("model"));
|
||||
|
||||
@@ -12,7 +12,7 @@ TINY_SYSTEM_HEADER
|
||||
|
||||
TINYORM_BEGIN_COMMON_NAMESPACE
|
||||
|
||||
/*! Namespace constains common strings for the Tom namespace (migrations). */
|
||||
/*! Namespace contains common strings for the Tom namespace (migrations). */
|
||||
namespace Tom::Constants
|
||||
{
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ TINY_SYSTEM_HEADER
|
||||
|
||||
TINYORM_BEGIN_COMMON_NAMESPACE
|
||||
|
||||
/*! Namespace constains common strings for the Tom namespace (migrations). */
|
||||
/*! Namespace contains common strings for the Tom namespace (migrations). */
|
||||
namespace Tom::Constants
|
||||
{
|
||||
|
||||
|
||||
Reference in New Issue
Block a user