From 02f91141f7fdbf6c94c5b117abf576316144cfca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20L=C3=B3pez-Anglada?= Date: Wed, 6 May 2026 07:13:09 +0200 Subject: [PATCH] Add missing space --- hub/apps/develop/data/store-and-retrieve-app-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/apps/develop/data/store-and-retrieve-app-data.md b/hub/apps/develop/data/store-and-retrieve-app-data.md index 7672fa5680..2ce9df8f3f 100644 --- a/hub/apps/develop/data/store-and-retrieve-app-data.md +++ b/hub/apps/develop/data/store-and-retrieve-app-data.md @@ -13,7 +13,7 @@ ms.localizationpriority: medium > [!IMPORTANT] > The [ApplicationData](/uwp/api/Windows.Storage.ApplicationData) APIs described in this article are designed for packaged apps. Unpackaged apps do not have access to the system-managed app data stores and should use alternative storage mechanisms such as direct file I/O or registry access. -*App data* is mutable data that is created and managed by a specific app.It includes runtime state, app settings, user preferences, reference content (such as the dictionary definitions in a dictionary app), and other settings. App data is different from *user data*, data that the user creates and manages when using an app. User data includes document or media files, email or communication transcripts, or database records holding content created by the user. User data may be useful or meaningful to more than one app. Often, this is data that the user wants to manipulate or transmit as an entity independent of the app itself, such as a document. +*App data* is mutable data that is created and managed by a specific app. It includes runtime state, app settings, user preferences, reference content (such as the dictionary definitions in a dictionary app), and other settings. App data is different from *user data*, data that the user creates and manages when using an app. User data includes document or media files, email or communication transcripts, or database records holding content created by the user. User data may be useful or meaningful to more than one app. Often, this is data that the user wants to manipulate or transmit as an entity independent of the app itself, such as a document. **Important note about app data:** The lifetime of the app data is tied to the lifetime of the app. If the app is removed, all of the app data will be lost as a consequence. Don't use app data to store user data or anything that users might perceive as valuable and irreplaceable. We recommend that the user's libraries and Microsoft OneDrive be used to store this sort of information. App data is ideal for storing app-specific user preferences, settings, and favorites.