Skip to content

Commit 846faca

Browse files
committed
Fixing issue 36 (#36)
1 parent 6602772 commit 846faca

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Quick_ACG/Views/Eg001EmbeddedSigning/quickEmbeddedSigning.cshtml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,23 +51,23 @@
5151
<p>@Html.Raw(ViewBag.CodeExampleText.ExampleDescription)</p>
5252

5353
<p>
54-
@if(ViewBag.CodeExampleText.LinksToAPIMethod.Count == 1)
54+
@if(ViewBag.CodeExampleText.LinksToApiMethod.Count == 1)
5555
{
56-
<span>@Html.Raw(ViewBag.SupportingTexts.APIMethodUsed)</span>
56+
<span>@Html.Raw(ViewBag.SupportingTexts.ApiMethodUsed)</span>
5757
}
5858
else
5959
{
60-
<span>@Html.Raw(ViewBag.SupportingTexts.APIMethodUsedPlural)</span>
60+
<span>@Html.Raw(ViewBag.SupportingTexts.ApiMethodUsedPlural)</span>
6161
}
6262

63-
@for(int i = 0; i < ViewBag.CodeExampleText.LinksToAPIMethod.Count; ++i)
63+
@for(int i = 0; i < ViewBag.CodeExampleText.LinksToApiMethod.Count; ++i)
6464
{
65-
<a target='_blank' href="@ViewBag.CodeExampleText.LinksToAPIMethod[i].Path">@Html.Raw(ViewBag.CodeExampleText.LinksToAPIMethod[i].PathName)</a>
66-
@if(i + 1 == ViewBag.CodeExampleText.LinksToAPIMethod.Count)
65+
<a target='_blank' href="@ViewBag.CodeExampleText.LinksToApiMethod[i].Path">@Html.Raw(ViewBag.CodeExampleText.LinksToApiMethod[i].PathName)</a>
66+
@if(i + 1 == ViewBag.CodeExampleText.LinksToApiMethod.Count)
6767
{
6868
<span>.</span>
6969
}
70-
else if(i + 1 == ViewBag.CodeExampleText.LinksToAPIMethod.Count - 1)
70+
else if(i + 1 == ViewBag.CodeExampleText.LinksToApiMethod.Count - 1)
7171
{
7272
<span> and </span>
7373
}

0 commit comments

Comments
 (0)