From 46a99528654f2b03cb985de29c0d4fe0428ffdb5 Mon Sep 17 00:00:00 2001 From: Lukas Rothenberger Date: Wed, 10 Jan 2024 08:27:49 +0100 Subject: [PATCH] doc(wiki): walk-through example finished --- docs/examples/walk_through.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/examples/walk_through.md b/docs/examples/walk_through.md index 6e2cb4b1d..3823d84f6 100644 --- a/docs/examples/walk_through.md +++ b/docs/examples/walk_through.md @@ -67,9 +67,10 @@ for patchid in $(find patch_generator -maxdepth 1 -type d); do done ``` -## Step 5: +## Step 5: Apply and manage patches To apply one or multiple suggestions to the sequential code in order to create a parallel program, the [Patch applicator](../tools/Patch_applicator.md) can be used to apply, manage, and roll back patches. For a detailed description, please refer to the respective wiki page. +Alternatively, known mechanisms to handle patch files can be used instead. In the following, we will apply the identified patch with the ids `1` and `2` and reset the code afterwards. ```