Skip to content

Commit faeb835

Browse files
committed
DOC-2582: Update comments in the html sorce examples.
1 parent fe7d8fa commit faeb835

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/ROOT/pages/export-to-pdf-with-jwt-authentication-nodejs.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Your project should look like this:
117117
},
118118
exportpdf_service_url: "<serviceURL>",
119119
120-
// export_token_provider fetches a token from the `/jwt` endpoint.
120+
// exportpdf_token_provider fetches a token from the `/jwt` endpoint.
121121
exportpdf_token_provider: () => {
122122
return fetch('http://localhost:3000/jwt', {
123123
method: 'POST',

modules/ROOT/pages/export-to-word-with-jwt-authentication-nodejs.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Your project should look like this:
115115
},
116116
exportword_service_url: "<serviceURL>",
117117
118-
// export_token_provider fetches a token from the `/jwt` endpoint.
118+
// exportword_token_provider fetches a token from the `/jwt` endpoint.
119119
exportword_token_provider: () => {
120120
return fetch('http://localhost:3000/jwt', {
121121
method: 'POST',

modules/ROOT/pages/importword-with-jwt-authentication-nodejs.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Your project should look like this:
117117
},
118118
importword_service_url: "<serviceURL>",
119119
120-
// export_token_provider fetches a token from the `/jwt` endpoint.
120+
// importword_token_provider fetches a token from the `/jwt` endpoint.
121121
importword_token_provider: () => {
122122
return fetch('http://localhost:3000/jwt', {
123123
method: 'POST',

0 commit comments

Comments
 (0)