fix: correct 5 typos and a code defect in comments and documentation - #34
Open
Avicennasis wants to merge 881 commits into
Open
Avicennasis wants to merge 881 commits into
Avicennasis wants to merge 881 commits into
Conversation
Added a fix for playwright test
Set up CI with Azure Pipelines
* added a new code example * refactoring the code * fixed links to examples * added a skip for authentication for Connect example * fix for fileSystem link * fix for linter * dependabot requested fixes --------- Co-authored-by: AaronWDS <aaron.wilde@docusign.com>
Signed-off-by: Inbar Gazit <inbar.gazit@docusign.com>
Signed-off-by: Inbar Gazit <inbar.gazit@docusign.com>
Signed-off-by: Inbar Gazit <inbar.gazit@docusign.com>
Signed-off-by: Inbar Gazit <inbar.gazit@docusign.com>
codeDepot markers Signed-off-by: Aaron Wilde <52012222+AaronWDS@users.noreply.github.com>
Added web forms code example
…ad-request Added upload request example
overall code is working.. checked eSignature module and logging the API calls remaining and reset time in the console.
Fixed the pom file for quick acg project
* Send envelope with multiple delivery channels
Bulk upload code example
Refactor sendEnvelope method and add workspace envelope creation snippets. Signed-off-by: CassandraLoewen <37552114+CassandraLoewen@users.noreply.github.com>
Removed commented-out snippets from doWork method. Signed-off-by: CassandraLoewen <37552114+CassandraLoewen@users.noreply.github.com>
Devdocs 18396
* updated focused view example to include phone auth * trigger the tests
karissarjacobsen
force-pushed
the
master
branch
from
September 25, 2026 18:31
dd1bdc3 to
e9aa39e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix 5 typos across 4 files.
src/main/java/com/docusign/controller/eSignature/services/CollectPaymentService.javaif (remaining != null & reset != null) {→if (remaining != null && reset != null) {(code)src/main/java/com/docusign/controller/eSignature/services/SetTemplateTabValuesService.javaif (remaining != null & reset != null) {→if (remaining != null && reset != null) {(code)// Create an envelope custom field to save our application"s→// Create an envelope custom field to save our application'ssrc/main/java/com/docusign/controller/eSignature/services/AddDocToTemplateService.javaif (remaining != null & reset != null) {→if (remaining != null && reset != null) {(code)src/main/java/com/docusign/controller/eSignature/services/SharedAccessService.javaif (remaining != null & reset != null) {→if (remaining != null && reset != null) {(code)Otherwise comments, documentation and message strings only — no functional changes.