PyDoc: correct use of single back-ticks

This commit is contained in:
Campbell Barton
2024-11-03 19:18:34 +11:00
parent 901359abf7
commit b00550916c
23 changed files with 52 additions and 50 deletions

View File

@@ -21,7 +21,7 @@ id_type = bpy.types.Scene
def seq_items_xform(data, xform_fn):
"""
Recursively expand items using `xform_fn`.
Recursively expand items using ``xform_fn``.
"""
if hasattr(data, "__len__"):
return tuple(seq_items_xform(v, xform_fn) for v in data)