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-02-14 12:58:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-14 12:58:04 +0300
commit67c8d97db36b285303abc5dce83b1bc8dc209651 (patch)
treebf1cf63fb1f9ade7205d4e6b73800b79a4f3a3b7 /source/blender/blenlib/intern/dot_export.cc
parent07c6a57507e81fe68a7fb3ee23c951fc80f3a042 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenlib/intern/dot_export.cc')
-rw-r--r--source/blender/blenlib/intern/dot_export.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/dot_export.cc b/source/blender/blenlib/intern/dot_export.cc
index 13a2341a9d5..93075a23c07 100644
--- a/source/blender/blenlib/intern/dot_export.cc
+++ b/source/blender/blenlib/intern/dot_export.cc
@@ -221,7 +221,7 @@ void Attributes::export__as_bracket_list(std::stringstream &ss) const
ss << "[";
attributes_.foreach_item([&](StringRef key, StringRef value) {
if (StringRef(value).startswith("<")) {
- /* Don't draw the quotes, this is an html-like value. */
+ /* Don't draw the quotes, this is an HTML-like value. */
ss << key << "=" << value << ", ";
}
else {