Skip to content

Commit 09d1528

Browse files
committed
fix: TT-153 [skip ci] capital letter in comments
1 parent 834d2e0 commit 09d1528

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SignUpValidation/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = async function (context, req) {
22
context.log("JavaScript HTTP trigger function processed a request v1.");
33
const API_VERSION = "1.0.0";
44

5-
// parse Basic Auth username and password
5+
// Parse Basic Auth username and password
66
var header = req.headers["authorization"] || "", // get the header
77
token = header.split(/\s+/).pop() || "", // and the encoded auth token
88
auth = new Buffer.from(token, "base64").toString(), // convert from base64
@@ -40,7 +40,7 @@ module.exports = async function (context, req) {
4040
// Log the request body
4141
context.log(`Request body: ${JSON.stringify(req.body)}`);
4242

43-
// get domain of email address
43+
// Get domain of email address
4444
const domain = req.body.email.split("@")[1];
4545
const allowedDomains = ["ioet.com"];
4646

0 commit comments

Comments
 (0)