docs/devel: Fix typo (s/exist paths/exit paths/)
In the discussion of control flow through a function, "exit paths" were meant. Signed-off-by: J. Neuschäfer <j.neuschaefer@9elements.com> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Link: https://lore.kernel.org/qemu-devel/20260520-exist-v1-1-535f929a87ae@9elements.com Signed-off-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
J. Neuschäfer committed
May 20, 2026 at 08:44 UTC
6a570c504f1bf1b42a3a0eadc8139b7cb1d7b8b8
1 file changed
+1
-1
docs/devel/style.rst
+1
-1
@@ -469,7 +469,7 @@ for a time/space trade-off like ``tlb_mmu_resize_locked`` in the
469
SoftMMU TLB code.
470
471
If the lifetime of the allocation is within the function and there are
472
-multiple exist paths you can also improve the readability of the code
472
+multiple exit paths you can also improve the readability of the code
473
by using ``g_autofree`` and related annotations. See :ref:`autofree-ref`
474
for more details.
475