Commit 6a570c504f for qemu.org

commit 6a570c504f1bf1b42a3a0eadc8139b7cb1d7b8b8
Author: J. Neuschäfer <j.neuschaefer@9elements.com>
Date:   Wed May 20 08:44:12 2026 +0200

    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>

diff --git a/docs/devel/style.rst b/docs/devel/style.rst
index b8edcf9316..f4da16a0e8 100644
--- a/docs/devel/style.rst
+++ b/docs/devel/style.rst
@@ -469,7 +469,7 @@ for a time/space trade-off like ``tlb_mmu_resize_locked`` in the
 SoftMMU TLB code.

 If the lifetime of the allocation is within the function and there are
-multiple exist paths you can also improve the readability of the code
+multiple exit paths you can also improve the readability of the code
 by using ``g_autofree`` and related annotations. See :ref:`autofree-ref`
 for more details.