diff options
-rw-r--r-- | docs/guides/ecosystem/mongoose.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guides/ecosystem/mongoose.md b/docs/guides/ecosystem/mongoose.md index bfcb957cc..a36bcd134 100644 --- a/docs/guides/ecosystem/mongoose.md +++ b/docs/guides/ecosystem/mongoose.md @@ -62,7 +62,7 @@ await cow.save(); // saves to the database const animals = await Animal.find(); animals[0].speak(); // logs "Moo!" -// disconect +// disconnect await mongoose.disconnect(); ``` |