Skip to content

Commit 442d304

Browse files
authored
Merge pull request #1227 from su-pleiades/fix/doc-Examples.md
fix small typo
2 parents a80d2ca + a185fcb commit 442d304

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

documentation/Examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ const connection = mysql.createConnection({
4949
ssl: 'Amazon RDS'
5050
});
5151

52-
conn.query('show status like \'Ssl_cipher\'', (err, res) => {
52+
connection.query('show status like \'Ssl_cipher\'', (err, res) => {
5353
console.log(err, res);
54-
conn.end();
54+
connection.end();
5555
});
5656
```
5757

0 commit comments

Comments
 (0)