Skip to content

Commit 7ea09e5

Browse files
author
Maledong
authored
fix for simple-profiling.md of other translations (#4118)
Ref: #4115. Just for the other translations' missing typos.
1 parent 04bb522 commit 7ea09e5

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

locale/en/docs/guides/simple-profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ app.get('/auth', (req, res) => {
5959

6060
username = username.replace(/[!@#$%^&*]/g, '');
6161

62-
if (!username || !password || users[username]) {
62+
if (!username || !password || !users[username]) {
6363
return res.sendStatus(400);
6464
}
6565

locale/es/docs/guides/simple-profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ app.get('/auth', (req, res) => {
4848

4949
username = username.replace(/[!@#$%^&*]/g, '');
5050

51-
if (!username || !password || users[username]) {
51+
if (!username || !password || !users[username]) {
5252
return res.sendStatus(400);
5353
}
5454

locale/fr/docs/guides/simple-profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ app.get('/auth', (req, res) => {
4848

4949
username = username.replace(/[!@#$%^&*]/g, '');
5050

51-
if (!username || !password || users[username]) {
51+
if (!username || !password || !users[username]) {
5252
return res.sendStatus(400);
5353
}
5454

locale/ja/docs/guides/simple-profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ app.get('/auth', (req, res) => {
8888

8989
username = username.replace(/[!@#$%^&*]/g, '');
9090

91-
if (!username || !password || users[username]) {
91+
if (!username || !password || !users[username]) {
9292
return res.sendStatus(400);
9393
}
9494

locale/ko/docs/guides/simple-profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ app.get('/auth', (req, res) => {
133133

134134
username = username.replace(/[!@#$%^&*]/g, '');
135135

136-
if (!username || !password || users[username]) {
136+
if (!username || !password || !users[username]) {
137137
return res.sendStatus(400);
138138
}
139139

locale/ro/docs/guides/simple-profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ app.get('/auth', (req, res) => {
4848

4949
username = username.replace(/[!@#$%^&*]/g, '');
5050

51-
if (!username || !password || users[username]) {
51+
if (!username || !password || !users[username]) {
5252
return res.sendStatus(400);
5353
}
5454

locale/ru/docs/guides/simple-profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ app.get('/auth', (req, res) => {
5858

5959
username = username.replace(/[!@#$%^&*]/g, '');
6060

61-
if (!username || !password || users[username]) {
61+
if (!username || !password || !users[username]) {
6262
return res.sendStatus(400);
6363
}
6464

locale/zh-cn/docs/guides/simple-profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ app.get('/auth', (req, res) => {
4848

4949
username = username.replace(/[!@#$%^&*]/g, '');
5050

51-
if (!username || !password || users[username]) {
51+
if (!username || !password || !users[username]) {
5252
return res.sendStatus(400);
5353
}
5454

0 commit comments

Comments
 (0)