Cleanup: consistent use of back-ticks in code-comments

This commit is contained in:
Campbell Barton
2025-07-23 20:54:26 +10:00
parent 81535a470c
commit 5e3db5fbb0
31 changed files with 80 additions and 71 deletions

View File

@@ -2273,7 +2273,7 @@ static StructRNA *bpy_prop_deferred_data_or_srna(PyObject *self,
self = PyTuple_GET_ITEM(args, 0);
args = PyTuple_New(0);
/* This will be #BPy_BoolProperty` or one of the functions that define a type. */
/* This will be #BPy_BoolProperty or one of the functions that define a type. */
PyCFunctionWithKeywords method_fn = (PyCFunctionWithKeywords)(void *)method_def->ml_meth;
*r_deferred_result = method_fn(self, args, kw);
Py_DECREF(args);

View File

@@ -83,7 +83,7 @@ static int parse_syntax_error(PyObject *err,
*message = nullptr;
*filename = nullptr;
/* new style errors. `err' is an instance */
/* New style errors. `err` is an instance. */
*message = _PyObject_GetAttrId(err, &PyId_msg);
if (!*message) {
goto finally;