Skip to content

Commit 4960d80

Browse files
authored
Sync with public; fix typo
1 parent 3961b7e commit 4960d80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

launcher-csharp/eSignature/Controllers/Eg033UnpauseSignatureWorkflowController.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using DocuSign.CodeExamples.Controllers;
33
using DocuSign.CodeExamples.Models;
44
using DocuSign.eSign.Api;
@@ -53,8 +53,8 @@ public IActionResult Update()
5353
var envelope = CreateEnvelope();
5454

5555
// Step 4. Call the eSignature API
56-
var updateOptinons = new UpdateOptions() { resendEnvelope = "true" };
57-
var results = envelopesApi.Update(accountId, RequestItemsService.PausedEnvelopeId, envelope, updateOptinons);
56+
var updateOptions = new UpdateOptions() { resendEnvelope = "true" };
57+
var results = envelopesApi.Update(accountId, RequestItemsService.PausedEnvelopeId, envelope, updateOptions);
5858

5959
// Process results
6060
ViewBag.h1 = "The envelope was updated successfully!";
@@ -74,4 +74,4 @@ private Envelope CreateEnvelope()
7474
};
7575
}
7676
}
77-
}
77+
}

0 commit comments

Comments
 (0)