Skip to content

Commit cc48045

Browse files
committed
fix docstrings
1 parent ab5db69 commit cc48045

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tesseract_core/runtime/experimental.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def jacobian_from_vjp(
154154
155155
Returns:
156156
dict[str, dict[str, np.ndarray]] with structure {output_path: {input_path: array}}
157-
where each array has shape (*output_shape, *input_shape).
157+
where each array has shape ``(*output_shape, *input_shape)``.
158158
"""
159159
raw_outputs = apply_fn(inputs=inputs)
160160
outputs_dict = (
@@ -214,7 +214,7 @@ def jacobian_from_jvp(
214214
215215
Returns:
216216
dict[str, dict[str, np.ndarray]] with structure {output_path: {input_path: array}}
217-
where each array has shape (*output_shape, *input_shape).
217+
where each array has shape ``(*output_shape, *input_shape)``.
218218
"""
219219
raw_outputs = apply_fn(inputs=inputs)
220220
outputs_dict = (

0 commit comments

Comments
 (0)