From 6ead8c6041cc36b2673c81daea2231d9db75e247 Mon Sep 17 00:00:00 2001 From: silverqx Date: Sat, 7 Oct 2023 15:58:31 +0200 Subject: [PATCH] fixtypo --- NOTES.txt | 2 +- docs/building/hello-world.mdx | 8 ++++---- docs/building/migrations.mdx | 8 ++++---- include/orm/tiny/model.hpp | 10 +++++----- tools/deploy.ps1 | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/NOTES.txt b/NOTES.txt index f855bed53..e9b060844 100644 --- a/NOTES.txt +++ b/NOTES.txt @@ -1032,7 +1032,7 @@ to it and had to fix some problems. - at the beginning are prepared and initialized CMake options and compiler requirements so nothing special - - then are set header/sources files, PCH, prepared TinOrm target definitions, properties + - then are set header/sources files, PCH, prepared TinyOrm target definitions, properties - Windows RC and manifest - nothing special until Deployment diff --git a/docs/building/hello-world.mdx b/docs/building/hello-world.mdx index cb13ed906..d74efe186 100644 --- a/docs/building/hello-world.mdx +++ b/docs/building/hello-world.mdx @@ -498,7 +498,7 @@ The exact [folders structure](building/tinyorm.mdx#folders-structure) is crucial ::: :::caution -Please pay special attention to letter casing in paths, especially TinyOrm vs TinORM! +Please pay special attention to letter casing in paths, especially TinyOrm vs TinyORM! ::: #### `Auto-configure` using `.qmake.conf` and `.env` @@ -528,7 +528,7 @@ Then, create a .env.(win32|unix|mingw) file in the `Hello ```qmake # Names and values of these qmake variables are crucial, they are used in HelloWorld.pro -# Please pay special attention to letter casing in paths, especially TinyOrm vs TinORM! +# Please pay special attention to letter casing in paths, especially TinyOrm vs TinyORM! # Path to the TinyORM build folder TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyORM-builds-qmake/build-TinyORM-Desktop_Qt_6_5_2_MSVC2022_64bit-Debug/) @@ -547,7 +547,7 @@ TINY_VCPKG_TRIPLET = x64-windows ```qmake # Names and values of these qmake variables are crucial, they are used in HelloWorld.pro -# Please pay special attention to letter casing in paths, especially TinyOrm vs TinORM! +# Please pay special attention to letter casing in paths, especially TinyOrm vs TinyORM! # Path to the TinyORM build folder TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyORM-builds-qmake/build-TinyORM-Desktop_Qt_6_5_2_clang16_64bit_ccache-Debug/) @@ -570,7 +570,7 @@ else: CONFIG *= use_gold_linker ```qmake # Names and values of these qmake variables are crucial, they are used in HelloWorld.pro -# Please pay special attention to letter casing in paths, especially TinyOrm vs TinORM! +# Please pay special attention to letter casing in paths, especially TinyOrm vs TinyORM! # Path to the TinyORM build folder TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyORM-builds-qmake/build-TinyORM-Desktop_Qt_6_5_2_MSYS2_UCRT64_clang_64bit-Debug/) diff --git a/docs/building/migrations.mdx b/docs/building/migrations.mdx index 75bfff29f..ace84bf86 100644 --- a/docs/building/migrations.mdx +++ b/docs/building/migrations.mdx @@ -711,7 +711,7 @@ The exact [folders structure](building/tinyorm.mdx#folders-structure) is crucial ::: :::caution -Please pay special attention to letter casing in paths, especially TinyOrm vs TinORM! +Please pay special attention to letter casing in paths, especially TinyOrm vs TinyORM! ::: #### `Auto-configure` using `.qmake.conf` and `.env` @@ -741,7 +741,7 @@ Then, create a .env.(win32|unix|mingw) file in the `tom` ```qmake # Names and values of these qmake variables are crucial, they are used in the tom.pro -# Please pay special attention to letter casing in paths, especially TinyOrm vs TinORM! +# Please pay special attention to letter casing in paths, especially TinyOrm vs TinyORM! # Path to the TinyORM build folder TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyORM-builds-qmake/build-TinyORM-Desktop_Qt_6_5_2_MSVC2022_64bit-Debug/) @@ -760,7 +760,7 @@ TINY_VCPKG_TRIPLET = x64-windows ```qmake # Names and values of these qmake variables are crucial, they are used in the tom.pro -# Please pay special attention to letter casing in paths, especially TinyOrm vs TinORM! +# Please pay special attention to letter casing in paths, especially TinyOrm vs TinyORM! # Path to the TinyORM build folder TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyORM-builds-qmake/build-TinyORM-Desktop_Qt_6_5_2_clang16_64bit_ccache-Debug/) @@ -783,7 +783,7 @@ else: CONFIG *= use_gold_linker ```qmake # Names and values of these qmake variables are crucial, they are used in the tom.pro -# Please pay special attention to letter casing in paths, especially TinyOrm vs TinORM! +# Please pay special attention to letter casing in paths, especially TinyOrm vs TinyORM! # Path to the TinyORM build folder TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyORM-builds-qmake/build-TinyORM-Desktop_Qt_6_5_2_MSYS2_UCRT64_clang_64bit-Debug/) diff --git a/include/orm/tiny/model.hpp b/include/orm/tiny/model.hpp index dfd04b513..c977fa4b3 100644 --- a/include/orm/tiny/model.hpp +++ b/include/orm/tiny/model.hpp @@ -117,7 +117,7 @@ namespace Orm::Tiny using Relation = Relations::Relation; /* Constructors */ - /*! Create a new TinORM model instance, default constructor. */ + /*! Create a new TinyORM model instance, default constructor. */ Model(); /*! Default destructor. */ inline ~Model() = default; @@ -132,18 +132,18 @@ namespace Orm::Tiny /*! Model's move assignment operator. */ inline Model &operator=(Model &&) noexcept = default; - /*! Create a new TinORM model instance from attributes + /*! Create a new TinyORM model instance from attributes (converting constructor). */ explicit Model(const QVector &attributes); - /*! Create a new TinORM model instance from attributes + /*! Create a new TinyORM model instance from attributes (converting constructor). */ explicit Model(QVector &&attributes); - /*! Create a new TinORM model instance from attributes + /*! Create a new TinyORM model instance from attributes (list initialization). */ Model(std::initializer_list attributes); - /*! Create a new TinORM model instance, skip-filling default attribute + /*! Create a new TinyORM model instance, skip-filling default attribute values. */ explicit Model(DontFillDefaultAttributes /*unused*/); diff --git a/tools/deploy.ps1 b/tools/deploy.ps1 index b66436f8c..c095ed323 100644 --- a/tools/deploy.ps1 +++ b/tools/deploy.ps1 @@ -1465,7 +1465,7 @@ function Invoke-UpdateVcpkgPorts { # --- Clear-Host -Write-Header 'Deploying TinORM library' +Write-Header 'Deploying TinyORM library' # Verify whether the current working tree is in the correct state (required preconditions) Test-GitRoot