Skip to content

Commit 9a6e33e

Browse files
committed
Updating docs
1 parent 1edaed2 commit 9a6e33e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

book.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[book]
2-
title = "Njord - A lightweight ORM library for Rust"
2+
title = "Njord - A lightweight ORM library in Rust"
33
authors = ["Marcus Cvjeticanin"]
4-
description = "A lightweight ORM library for Rust with strong-typed SQL DSL and sequence API."
4+
description = "A lightweight ORM library in Rust with strong-typed SQL DSL and sequence API."
55
language = "en"
66
git-repository-url = "https://github.com/mjovanc/njord"
77
git-repository-icon = "fa-github"

docs/src/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# njord
1+
# Njord
22

3-
njord is a lightweight ORM library for Rust with strong-typed SQL DSL and sequence API.
3+
Njord is a lightweight ORM library for Rust with strong-typed SQL DSL and sequence API.

docs/src/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting started
22

3-
To install njord into your Rust project we need to include the dependencies:
3+
To install Njord into your Rust project we need to include the dependencies:
44

55
**Cargo.toml**
66
```toml

docs/src/sqlite/define-tables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Define tables
22

3-
To define a table we use derive with the `Table` (provided by njord) and `Default` procedural macro. Then we create a simple struct with a given name. The name of the struct will be the table name in the database:
3+
To define a table we use derive with the `Table` (provided by Njord) and `Default` procedural macro. Then we create a simple struct with a given name. The name of the struct will be the table name in the database:
44

55
```rust
66
#[derive(Table, Default)]

0 commit comments

Comments
 (0)