Skip to content

Commit 5b89cd5

Browse files
Update lists.md - fix typo (#651)
1 parent 201bfb4 commit 5b89cd5

File tree

1 file changed

+4
-4
lines changed
  • libraries/radwordsprocessing/concepts

1 file changed

+4
-4
lines changed

libraries/radwordsprocessing/concepts/lists.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ __Example 6__ demonstrates how you can apply the list created in Steps 1-4 above
185185
{{region cs-radwordsprocessing-concepts-lists_5}}
186186
for (int level = 0; level < list.Levels.Count; level++)
187187
{
188-
Paragraph paragrah = section.Blocks.AddParagraph();
189-
paragrah.Inlines.AddRun(string.Format("ListLevel: {0}", level + 1));
190-
paragrah.ListId = list.Id;
191-
paragrah.ListLevel = level;
188+
Paragraph paragraph = section.Blocks.AddParagraph();
189+
paragraph.Inlines.AddRun(string.Format("ListLevel: {0}", level + 1));
190+
paragraph.ListId = list.Id;
191+
paragraph.ListLevel = level;
192192
}
193193
{{endregion}}
194194

0 commit comments

Comments
 (0)