We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201bfb4 commit 5b89cd5Copy full SHA for 5b89cd5
libraries/radwordsprocessing/concepts/lists.md
@@ -185,10 +185,10 @@ __Example 6__ demonstrates how you can apply the list created in Steps 1-4 above
185
{{region cs-radwordsprocessing-concepts-lists_5}}
186
for (int level = 0; level < list.Levels.Count; level++)
187
{
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;
+ Paragraph paragraph = section.Blocks.AddParagraph();
+ paragraph.Inlines.AddRun(string.Format("ListLevel: {0}", level + 1));
+ paragraph.ListId = list.Id;
+ paragraph.ListLevel = level;
192
}
193
{{endregion}}
194
0 commit comments