Skip to content

Commit d632ae2

Browse files
fix indentation
1 parent 8c9a67a commit d632ae2

File tree

1 file changed

+36
-36
lines changed

1 file changed

+36
-36
lines changed

source/index.txt

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -128,46 +128,46 @@ Welcome to MongoDB Docs
128128
:class: hero-img
129129
:alt: Homepage illustration
130130

131-
What is MongoDB?
132-
----------------
133-
134-
MongoDB is a document-oriented, operational database
135-
built from the ground up as an alternative to the relational
136-
database for modern applications.
137-
138-
Unlike relational databases, MongoDB allows developers
139-
to store rich JSON-like documents that map naturally to
140-
the objects they use in their code.
141-
142-
For example, to model user objects in an application,
143-
a relational model would require multiple tables for
144-
what could be elegantly stored in MongoDB as this:
145-
146-
.. code-block:: json
147-
148-
{
149-
firstname: "Bob",
150-
lastname: "Smith",
151-
152-
address: {
153-
street: "100 Main St",
154-
city: "Anytown",
155-
state: "MO",
156-
zip: "11111"
157-
}
131+
What is MongoDB?
132+
----------------
133+
134+
MongoDB is a document-oriented, operational database
135+
built from the ground up as an alternative to the relational
136+
database for modern applications.
137+
138+
Unlike relational databases, MongoDB allows developers
139+
to store rich JSON-like documents that map naturally to
140+
the objects they use in their code.
141+
142+
For example, to model user objects in an application,
143+
a relational model would require multiple tables for
144+
what could be elegantly stored in MongoDB as this:
145+
146+
.. code-block:: json
147+
148+
{
149+
firstname: "Bob",
150+
lastname: "Smith",
151+
152+
address: {
153+
street: "100 Main St",
154+
city: "Anytown",
155+
state: "MO",
156+
zip: "11111"
158157
}
159-
160-
And retrieved with queries such as:
158+
}
159+
160+
And retrieved with queries such as:
161161

162-
.. code-block:: sh
162+
.. code-block:: sh
163163

164-
users.find({address.zip : "111111"})
164+
users.find({address.zip : "111111"})
165165

166-
MongoDB also offers:
167-
- Strong consistency with ACID transactions.
168-
- Modern additional built-in query capabilities such as geographical search, lexical search, and vector search.
169-
- Serverless horizontal scaling with geography-aware fault tolerance across all major cloud providers.
170-
- Security primitives that comply with the most demanding of enterprise environments.
166+
MongoDB also offers:
167+
- Strong consistency with ACID transactions.
168+
- Modern additional built-in query capabilities such as geographical search, lexical search, and vector search.
169+
- Serverless horizontal scaling with geography-aware fault tolerance across all major cloud providers.
170+
- Security primitives that comply with the most demanding of enterprise environments.
171171

172172
.. kicker:: How this documentation is organized
173173

0 commit comments

Comments
 (0)