From 085ab79460ba66b9e7af6c2f006f376ec8d432e3 Mon Sep 17 00:00:00 2001 From: Dachary Date: Tue, 13 Aug 2024 16:28:02 -0400 Subject: [PATCH] (DOCSP-40103): Fix typo on Flutter: Configure & Open a Realm page (#3366) ## Pull Request Info - SDK Docs Consolidation Jira ticket: https://jira.mongodb.org/browse/DOCSP-40103 ### Staging Links
  • sdk/flutter/realm-database/configure-and-open
  • ### Release Notes - Flutter SDK - Realm Database/Configure & Open a Realm: Fix typo in "Add Initial Data to Realm" section. --- source/sdk/flutter/realm-database/configure-and-open.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sdk/flutter/realm-database/configure-and-open.txt b/source/sdk/flutter/realm-database/configure-and-open.txt index 91fbe1fd48..2da3778123 100644 --- a/source/sdk/flutter/realm-database/configure-and-open.txt +++ b/source/sdk/flutter/realm-database/configure-and-open.txt @@ -105,7 +105,7 @@ Add Initial Data to Realm Use :flutter-sdk:`initialDataCallback() ` to invoke a callback function the first time that you open a realm. -The function only executes the first time that the realm on the device. +The function only executes the first time you open that realm on the device. The realm instance passed to the callback function already has a write transaction open, so you do not need to wrap write operations in a ``Realm.write()`` transaction block. ``initialDataCallback`` can be useful for adding initial data to your application