diff options
author | 2023-09-09 01:50:07 +0530 | |
---|---|---|
committer | 2023-09-08 13:20:07 -0700 | |
commit | 7d9820d4787692b534049522177faa572110a682 (patch) | |
tree | 7af9586f05c1444bfc882fa92274cf324dcb22b5 | |
parent | b5da5168bfceb7052015294bb01b83fe8d74869f (diff) | |
download | bun-7d9820d4787692b534049522177faa572110a682.tar.gz bun-7d9820d4787692b534049522177faa572110a682.tar.zst bun-7d9820d4787692b534049522177faa572110a682.zip |
Update mongoose.md (#4534)
-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(); ``` |