From 04a32af16bd169db55891690244d74163d692697 Mon Sep 17 00:00:00 2001 From: Amir Tawfik Date: Wed, 17 May 2017 12:57:48 -0400 Subject: [PATCH] Update headers in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 75a2d63..6c5a86f 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ return qOrm.qConnect('mysql://username:password@host/database') }); ``` -##Supported methods +## Supported methods - `qOrm.qConnect, qOrm.qExpress` - `db.qDefine, db.qExecQuery, db.qSync, db.qDrop` @@ -55,13 +55,13 @@ return qOrm.qConnect('mysql://username:password@host/database') - `instance.qSave, instance.qRemove, instance.qValidate` - `instance.qGetAssociatedModel`, etc. -##Notes +## Notes - All methods inherit their habitual parameters from their callback-based counterparts. (Behind the scenes, we use `Q.nbind`.) - This is very beta! Works on my application (it's been tested extensively in there), but does not have its own unit tests yet. - Features such as `orm.enforce`, `orm.eq`, etc. are not wrapped. If you need them (such as in the example), you have to `require('orm')` as well. -##TODO +## TODO - Tests - More examples