From 27ee53d37dae5ece54275c812264470595c83206 Mon Sep 17 00:00:00 2001 From: vladislav-todorov Date: Fri, 3 Oct 2025 12:00:59 +0300 Subject: [PATCH] Update lists.md - fix typo --- libraries/radwordsprocessing/concepts/lists.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/radwordsprocessing/concepts/lists.md b/libraries/radwordsprocessing/concepts/lists.md index e010b9e3..c30439e9 100644 --- a/libraries/radwordsprocessing/concepts/lists.md +++ b/libraries/radwordsprocessing/concepts/lists.md @@ -185,10 +185,10 @@ __Example 6__ demonstrates how you can apply the list created in Steps 1-4 above {{region cs-radwordsprocessing-concepts-lists_5}} for (int level = 0; level < list.Levels.Count; level++) { - Paragraph paragrah = section.Blocks.AddParagraph(); - paragrah.Inlines.AddRun(string.Format("ListLevel: {0}", level + 1)); - paragrah.ListId = list.Id; - paragrah.ListLevel = level; + Paragraph paragraph = section.Blocks.AddParagraph(); + paragraph.Inlines.AddRun(string.Format("ListLevel: {0}", level + 1)); + paragraph.ListId = list.Id; + paragraph.ListLevel = level; } {{endregion}}