From 75d05cf2d57304b8aa3d3c994b1a18601bb796cd Mon Sep 17 00:00:00 2001 From: Yichen Wang <18348405+Aiee@users.noreply.github.com> Date: Sat, 17 Jul 2021 01:08:00 +0800 Subject: [PATCH] [Minor] Fix typos in chainable_api.adoc As title. --- docs/chainable_api.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/chainable_api.adoc b/docs/chainable_api.adoc index eaf819c..3359ff2 100644 --- a/docs/chainable_api.adoc +++ b/docs/chainable_api.adoc @@ -2,8 +2,8 @@ _doing_ -What's chanable api? +What's chainable api? -For example, in norm we write `From(&User{vid:10, created: 100}).Over(Follow{}).Return(sql, &user)`, and it will be translate to `go from 10 over follow where $^.created == 100 yield {{sql}}`. +For example, in norm if we write `From(&User{vid:10, created: 100}).Over(Follow{}).Return(sql, &user)`, it will be translated to `go from 10 over follow where $^.created == 100 yield {{ngql}}`. -Or `match(..)` for instead (haven't decided). \ No newline at end of file +Or `match(..)` for instead (haven't decided).