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.