From e08072d77b7bc99c9af1c525de419c6736754412 Mon Sep 17 00:00:00 2001 From: Joe Farebrother Date: Fri, 4 Apr 2025 12:43:23 +0100 Subject: [PATCH] Fix qhelp formatting --- .../LoopVariableCapture/LoopVariableCapture.qhelp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/python/ql/src/Variables/LoopVariableCapture/LoopVariableCapture.qhelp b/python/ql/src/Variables/LoopVariableCapture/LoopVariableCapture.qhelp index ae23584344c..b902f976a53 100644 --- a/python/ql/src/Variables/LoopVariableCapture/LoopVariableCapture.qhelp +++ b/python/ql/src/Variables/LoopVariableCapture/LoopVariableCapture.qhelp @@ -27,10 +27,13 @@ In the following (BAD) example, a `tasks` list is created, but each task capture

In the following (GOOD) example, each closure has an `i` default parameter, shadowing the outer i variable, the default value of which is determined as the value of the loop variable i at the time the closure is created. - -In the following (GOOD) example, functools.partial is used to partially evaluate the lambda expression with the value of i. -

+ +

+In the following (GOOD) example, functools.partial is used to partially evaluate the lambda expression with the value of i. +

+ +