From 514e12a335cf7ac0ac0afffe8bed58f6be5d114f Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Fri, 20 Aug 2021 22:47:15 +0800 Subject: [PATCH] Readme --- Design.md | 2 ++ README.md | 3 +-- src/lib.rs | 3 +-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Design.md b/Design.md index 860afcef..73e88227 100644 --- a/Design.md +++ b/Design.md @@ -1,5 +1,7 @@ # Design Goals +We are heavily inspired by ActiveRecord, Eloquent and TypeORM. + 1. Intuitive and ergonomic API should state the intention clearly. Provide syntax sugar for common things. diff --git a/README.md b/README.md index 29b83bd8..f2d262e9 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,7 @@ # SeaORM -Inspired by ActiveRecord, Eloquent and TypeORM, SeaORM aims to provide you an intuitive and ergonomic -API to make working with databases in Rust a first-class experience. +SeaORM is a relational ORM to help you build light weight and concurrent web services in Rust. ```markdown This is an early release of SeaORM, the API is not stable yet. diff --git a/src/lib.rs b/src/lib.rs index becf73eb..93ec2545 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,8 +18,7 @@ //! //! # SeaORM //! -//! Inspired by ActiveRecord, Eloquent and TypeORM, SeaORM aims to provide you an intuitive and ergonomic -//! API to make working with databases in Rust a first-class experience. +//! SeaORM is a relational ORM to help you build light weight and concurrent web services in Rust. //! //! ```markdown //! This is an early release of SeaORM, the API is not stable yet.