From 8187566050f9c41a89865972e7162f73e6494934 Mon Sep 17 00:00:00 2001 From: Jason Cooke Date: Thu, 1 Aug 2019 12:46:05 +1200 Subject: [PATCH] docs: fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a9e860..a61c0bb 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ Only modules registered with Angoose will be exported to client side(hence the t - For Mongoose models, just make sure you set your `module.exports` to the return value of `mongoose.model()` call. - For other modules, call `angoose.module(name, func_or_object)` to register your service module. (angoose.service() is still supported and does same thing) -And for either case, make sure Angoose knwo where to find your model files by using the `modelDir` configuration. +And for either case, make sure Angoose know where to find your model files by using the `modelDir` configuration. There are a couple of exmaples under `angoose/models` directory for reference.