Skip to content

Commit f6f9194

Browse files
Chris Chorozza
authored andcommitted
DOCSP-11515: fix typos (#558)
1 parent d3fb9a4 commit f6f9194

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/reference/content/bson/codecs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public class DocumentCodecProvider implements CodecProvider {
8888
return (Codec<T>) new DocumentCodec(registry);
8989
}
9090

91-
// CodecProvider returns null if it's not a provider for the requresed Class
91+
// CodecProvider returns null if it's not a provider for the requested Class
9292
return null;
9393
}
9494
}

docs/reference/content/bson/pojos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ encoded and decoded.
6060
Automatic POJO support can be provided by setting `PojoCodecProvider.Builder#automatic(true)`, once built the `PojoCodecProvider` will
6161
automatically create a POJO `Codec` for any class that contains at least one serializable or deserializable property.
6262

63-
The entry point for customisable POJO support is the `PojoCodecProvider`. New instances can be created via the
63+
The entry point for customizable POJO support is the `PojoCodecProvider`. New instances can be created via the
6464
[`PojoCodecProvider.builder()`]({{< apiref "bson" "org/bson/codecs/pojo/PojoCodecProvider.html#builder" >}}) method. The `builder` allows users to
6565
register any combination of:
6666

docs/reference/content/builders/filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The logical operator methods include:
6767

6868
#### Examples
6969

70-
This example creates a filter that selects all documents where ther value of the `qty` field is greater than `20` and the value of the
70+
This example creates a filter that selects all documents where the value of the `qty` field is greater than `20` and the value of the
7171
`user` field equals `"jdoe"`:
7272

7373
```java

docs/reference/content/builders/projections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ title = "Projections"
1010
## Projections
1111

1212
The [`Projections`]({{< apiref "mongodb-driver-core" "com/mongodb/client/model/Projections" >}}) class provides static factory methods for all the MongoDB
13-
projection opererators. Each method returns an instance of the [`Bson`]({{< relref "bson/documents.md#bson" >}}) type, which can in turn
13+
projection operators. Each method returns an instance of the [`Bson`]({{< relref "bson/documents.md#bson" >}}) type, which can in turn
1414
be passed to any method that expects a projection.
1515

1616
For brevity, you may choose to import the methods of the `Projections` class statically:

docs/reference/content/driver-scala/builders/filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The logical operator methods include:
6969

7070
#### Examples
7171

72-
This example creates a filter that selects all documents where ther value of the `qty` field is greater than `20` and the value of the
72+
This example creates a filter that selects all documents where the value of the `qty` field is greater than `20` and the value of the
7373
`user` field equals `"jdoe"`:
7474

7575
```scala

docs/reference/content/driver-scala/builders/projections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title = "Projections"
1111
## Projections
1212

1313
The [`Projections`]({{< apiref "mongo-scala-driver" "org/mongodb/scala/model/Projections$" >}}) class provides static factory methods for all the MongoDB
14-
projection opererators. Each method returns an instance of the [`Bson`]({{< relref "bson/documents.md#bson" >}}) type, which can in turn
14+
projection operators. Each method returns an instance of the [`Bson`]({{< relref "bson/documents.md#bson" >}}) type, which can in turn
1515
be passed to any method that expects a projection.
1616

1717
For brevity, you may choose to import the methods of the `Projections` class statically:

0 commit comments

Comments
 (0)