Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-11-30 01:04:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-11-30 02:15:17 +0300
commit4e45265dc6cafe0bf6f36a14a469288183059858 (patch)
tree899ea04187908aafbcc590fd026b33d2d3b021c1 /source/blender/editors/asset
parent262ef26ea3fe457ff077224662eaecc1b912aed1 (diff)
Cleanup: spelling in comments & strings
Diffstat (limited to 'source/blender/editors/asset')
-rw-r--r--source/blender/editors/asset/intern/asset_indexer.cc6
-rw-r--r--source/blender/editors/asset/intern/asset_ops.cc2
2 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/asset/intern/asset_indexer.cc b/source/blender/editors/asset/intern/asset_indexer.cc
index 43951b4b714..8472b33d3af 100644
--- a/source/blender/editors/asset/intern/asset_indexer.cc
+++ b/source/blender/editors/asset/intern/asset_indexer.cc
@@ -532,11 +532,11 @@ struct AssetIndex {
const int UNKNOWN_VERSION = -1;
/**
- * `blender::io::serialize::Value` represeting the contents of an index file.
+ * `blender::io::serialize::Value` representing the contents of an index file.
*
- * Value is used over ObjectValue as the contents of the index could be corrupted and doesn't
+ * Value is used over #ObjectValue as the contents of the index could be corrupted and doesn't
* represent an object. In case corrupted files are detected the `get_version` would return
- * UNKNOWN_VERSION.`
+ * `UNKNOWN_VERSION`.
*/
std::unique_ptr<Value> contents;
diff --git a/source/blender/editors/asset/intern/asset_ops.cc b/source/blender/editors/asset/intern/asset_ops.cc
index f182dcc1ad0..6e81908c24e 100644
--- a/source/blender/editors/asset/intern/asset_ops.cc
+++ b/source/blender/editors/asset/intern/asset_ops.cc
@@ -907,7 +907,7 @@ static bool has_external_files(Main *bmain, struct ReportList *reports)
eBPathForeachFlag flag = static_cast<eBPathForeachFlag>(
BKE_BPATH_FOREACH_PATH_SKIP_PACKED /* Packed files are fine. */
- | BKE_BPATH_FOREACH_PATH_SKIP_MULTIFILE); /* Only report multifiles once, it's enough. */
+ | BKE_BPATH_FOREACH_PATH_SKIP_MULTIFILE); /* Only report multi-files once, it's enough. */
BPathForeachPathData bpath_data = {
/* bmain */ bmain,