Cleanup: typo, spelling

This commit is contained in:
Campbell Barton
2025-07-10 00:38:09 +00:00
parent 96c214b0d2
commit 16e06a29f0
2 changed files with 2 additions and 2 deletions

View File

@@ -241,7 +241,7 @@ void ShaderGraph::connect(ShaderOutput *from, ShaderInput *to)
assert(from && to);
if (to->link) {
LOG(WARNING) << "Sraph connect: input already connected.";
LOG(WARNING) << "Graph connect: input already connected.";
return;
}

View File

@@ -1261,7 +1261,7 @@ static const char arg_handle_log_set_doc[] =
"\t--log \"*\": log everything\n"
"\t--log \"event\": logs every category starting with \"event\"\n"
"\t--log \"render,cycles\": log both render and cycles messages\n"
"\t--log \"*mesh*\": log every category containing \"mesh\" substring\n"
"\t--log \"*mesh*\": log every category containing \"mesh\" sub-string\n"
"\t--log \"*,^operator\": log everything except operators, with ^prefix to exclude";
static int arg_handle_log_set(int argc, const char **argv, void * /*data*/)
{