Skip to content

Commit 1460b11

Browse files
committed
Fixed typos.
1 parent 1bc273d commit 1460b11

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ Laravel MongoDB
33

44
[![Latest Stable Version](http://img.shields.io/github/release/jenssegers/laravel-mongodb.svg)](https://packagist.org/packages/jenssegers/mongodb) [![Total Downloads](http://img.shields.io/packagist/dm/jenssegers/mongodb.svg)](https://packagist.org/packages/jenssegers/mongodb) [![Build Status](https://img.shields.io/github/workflow/status/jenssegers/laravel-mongodb/CI)](https://github.com/jenssegers/laravel-mongodb/actions) [![Coverage Status](https://coveralls.io/repos/github/jenssegers/laravel-mongodb/badge.svg?branch=master)](https://coveralls.io/github/jenssegers/laravel-mongodb?branch=master) [![Donate](https://img.shields.io/badge/donate-paypal-blue.svg)](https://www.paypal.me/jenssegers)
55

6-
Laravel Eloquent adds support for ODM (Object Document Mapper) to Laravel. It's the same as Eloquent ORM, but with Documents, since MongoDB is a NoSQL database.
7-
6+
This package adds functionalities to the Eloquent model and Query builder for MongoDB, using the original Laravel API. *This library extends the original Laravel classes, so it uses exactly the same methods.*
87

98
- [Laravel MongoDB](#laravel-mongodb)
10-
- [Laravel Installation](#laravel-installation)
9+
- [Installation](#installation)
1110
- [Laravel version Compatibility](#laravel-version-compatibility)
1211
- [Laravel](#laravel)
1312
- [Lumen](#lumen)
@@ -29,19 +28,19 @@ Laravel Eloquent adds support for ODM (Object Document Mapper) to Laravel. It's
2928
- [Basic Usage](#basic-usage-1)
3029
- [belongsToMany and pivots](#belongstomany-and-pivots)
3130
- [EmbedsMany Relationship](#embedsmany-relationship)
32-
- [EmbedsOne Relations](#embedsone-relations)
31+
- [EmbedsOne Relationship](#embedsone-relationship)
3332
- [Query Builder](#query-builder)
3433
- [Basic Usage](#basic-usage-2)
3534
- [Available operations](#available-operations)
3635
- [Schema](#schema)
3736
- [Basic Usage](#basic-usage-3)
3837
- [Geospatial indexes](#geospatial-indexes)
3938
- [Extending](#extending)
40-
- [Cross-Database Relations](#cross-database-relations)
39+
- [Cross-Database Relationships](#cross-database-relationships)
4140
- [Authentication](#authentication)
4241
- [Queues](#queues)
4342

44-
Laravel Installation
43+
Installation
4544
------------
4645
Make sure you have the MongoDB PHP driver installed. You can find installation instructions at http://php.net/manual/en/mongodb.installation.php
4746

@@ -874,7 +873,7 @@ class User extends Model
874873
Embedded relations will return a Collection of embedded items instead of a query builder. Check out the available operations here: https://laravel.com/docs/master/collections
875874

876875

877-
### EmbedsOne Relations
876+
### EmbedsOne Relationship
878877

879878
The embedsOne relation is similar to the embedsMany relation, but only embeds a single model.
880879

@@ -1023,7 +1022,7 @@ Schema::create('bars', function ($collection) {
10231022
Extending
10241023
---------
10251024

1026-
### Cross-Database Relations
1025+
### Cross-Database Relationships
10271026

10281027
If you're using a hybrid MongoDB and SQL setup, you can define relationships across them.
10291028

0 commit comments

Comments
 (0)