Skip to content

Commit 451b40f

Browse files
osharaf-mdblindseymoorecbullinger
authored
DOCSP-16785 the the typo (#3297)
## Pull Request Info Jira ticket: https://jira.mongodb.org/browse/DOCSP-16785 - [Many Pages Across docs-realm](https://preview-mongodbosharafmdb.gatsbyjs.io/realm/DOCSP-16785-the-the-typo/): changed "the the" typo and added metadata ### Reminder Checklist Before merging your PR, make sure to check a few things. - [ ] Did you tag pages appropriately? - genre - programming_language - meta.keywords - meta.description - [ ] Describe your PR's changes in the Release Notes section - [ ] Create a Jira ticket for related docs-realm work, if any ### Release Notes - **Across many docs-realm pages** - fixed "the the" typo and added meta data ### Review Guidelines [REVIEWING.md](https://github.com/mongodb/docs-app-services/blob/master/REVIEWING.md) --------- Co-authored-by: lindseymoore <[email protected]> Co-authored-by: cbullinger <[email protected]>
1 parent 22a4cb8 commit 451b40f

File tree

19 files changed

+96
-20
lines changed

19 files changed

+96
-20
lines changed

docs-release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,7 @@ Prepare docs for C++ GA release, including:
16271627
- Model Data
16281628
- Define an Object Model: Update info for C# nullable reference types and nullable-aware context, add a Bluehawked code example
16291629
- Data Binding: Move a section about data binding and MVVM from Define an Object Model to Data Binding page
1630-
- React to Changes: Add a callout with info about binding data to the UI and a link to the the Data Binding page
1630+
- React to Changes: Add a callout with info about binding data to the UI and a link to the Data Binding page
16311631

16321632
## Node.js SDK
16331633

examples/java/sync/app/src/androidTest/java/com/mongodb/realm/examples/java/ClientResetTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ public void handleManualReset(App app, SyncSession session, ClientResetRequiredE
238238

239239
Log.w("EXAMPLE", "Opened a fresh instance of the realm.");
240240

241-
// Open the the realm backup -- as a dynamic realm
241+
// Open the realm backup -- as a dynamic realm
242242
// (no formal schema; access all data through field lookups)
243243
DynamicRealm backupRealm = DynamicRealm.getInstance(error.getBackupRealmConfiguration());
244244
Log.w("EXAMPLE", "Opened the backup realm.");

examples/java/sync/app/src/androidTest/java/com/mongodb/realm/examples/kotlin/ClientResetTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ class ClientResetTest : RealmTest() {
265265
}
266266
Log.w("EXAMPLE", "Opened a fresh instance of the realm.")
267267

268-
// Open the the realm backup -- as a dynamic realm
268+
// Open the realm backup -- as a dynamic realm
269269
// (no formal schema; access all data through field lookups)
270270
val backupRealm =
271271
DynamicRealm.getInstance(error.backupRealmConfiguration)

examples/react-native/legacy/__tests__/js/CRUD/update.test.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ describe('Update Data Tests', () => {
175175
);
176176
const carWashTask = assertionRealm.objectForPrimaryKey(Task, 1234);
177177

178-
// Test that the the 'Wash the car' task was upserted, and progressMinutesText is now displaying 5 minutes progressed
178+
// Test that the 'Wash the car' task was upserted, and progressMinutesText is now displaying 5 minutes progressed
179179
expect(progressMinutesText.children.toString()).toBe('5');
180180
expect(carWashTask.progressMinutes).toBe(5);
181181
});

source/examples/generated/java/sync/ClientResetTest.snippet.handle-manual-reset.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public void handleManualReset(App app, SyncSession session, ClientResetRequiredE
4040

4141
Log.w("EXAMPLE", "Opened a fresh instance of the realm.");
4242

43-
// Open the the realm backup -- as a dynamic realm
43+
// Open the realm backup -- as a dynamic realm
4444
// (no formal schema; access all data through field lookups)
4545
DynamicRealm backupRealm = DynamicRealm.getInstance(error.getBackupRealmConfiguration());
4646
Log.w("EXAMPLE", "Opened the backup realm.");

source/examples/generated/java/sync/ClientResetTest.snippet.handle-manual-reset.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fun handleManualReset(app: App, session: SyncSession?, error: ClientResetRequire
3939
}
4040
Log.w("EXAMPLE", "Opened a fresh instance of the realm.")
4141

42-
// Open the the realm backup -- as a dynamic realm
42+
// Open the realm backup -- as a dynamic realm
4343
// (no formal schema; access all data through field lookups)
4444
val backupRealm =
4545
DynamicRealm.getInstance(error.backupRealmConfiguration)

source/includes/aggregation-stages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ but replaces the array value with the array element in each copy.
208208

209209
#. Use ``$group`` stage with ``$addToSet`` to create new documents
210210
for each ``type`` with a new field ``colors`` that contains an array
211-
of all the the colors for that flower type that occur in the collection.
211+
of all the colors for that flower type that occur in the collection.
212212
#. Use ``$unwind`` stage to create separate documents for each combination of
213213
type and color.
214214
#. Use ``$sort`` stage to sort the results in alphabetical order.

temp/cpp/users/custom-user-data.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
Custom User Data - C++ SDK
55
==========================
66

7+
.. meta::
8+
:description: Learn how to create custom user data using the Atlas Device SDK for C++.
9+
.. facet::
10+
:name: genre
11+
:values: tutorial
12+
713
.. contents:: On this page
814
:local:
915
:backlinks: none
@@ -52,7 +58,7 @@ Create a User's Custom Data Document
5258

5359
To create custom user data for a user, create a MongoDB document in the
5460
custom user data collection. The user ID field of the document should
55-
contain the the user's user ID.
61+
contain the user's user ID.
5662

5763
.. tip::
5864

temp/dotnet/app-services/call-a-function.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44
Call a Function - .NET SDK
55
==========================
66

7+
.. meta::
8+
:description: Learn how to call a function using the Atlas Device SDK for .NET.
9+
10+
.. facet::
11+
:name: genre
12+
:values: tutorial
13+
714
.. contents:: On this page
815
:local:
916
:backlinks: none
@@ -45,7 +52,7 @@ parameter and the arguments as the remaining parameters:
4552
.. note::
4653

4754
The ``CallAsync()`` method returns a single ``BsonValue`` object, which you can
48-
deserialize after calling the function or by using the the generic
55+
deserialize after calling the function or by using the generic
4956
overload. Both of these approaches to deserialization are shown in the
5057
code above.
5158

temp/dotnet/manage-users/custom-user-data.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
Custom User Data - .NET SDK
66
===========================
77

8+
.. meta::
9+
:description: Learn how to create custom user data using the Atlas Device SDK for .NET.
10+
11+
.. facet::
12+
:name: genre
13+
:values: tutorial
14+
815
.. contents:: On this page
916
:local:
1017
:backlinks: none
@@ -66,7 +73,7 @@ Create a User's Custom User Data Document
6673

6774
To create custom user data for a user, create a MongoDB document in the
6875
custom user data collection. The user ID field of the document must
69-
contain the the user's user ID. The following example uses
76+
contain the user's user ID. The following example uses
7077
:ref:`MongoDB Data Access <dotnet-mongodb-data-access>` to insert a
7178
document containing the user ID of the currently logged in user and several
7279
custom properties into the custom user data collection:

0 commit comments

Comments
 (0)