diff --git a/docs/application/dotnet/guides/data/data-storages.md b/docs/application/dotnet/guides/data/data-storages.md
index 8647220199..417446527c 100644
--- a/docs/application/dotnet/guides/data/data-storages.md
+++ b/docs/application/dotnet/guides/data/data-storages.md
@@ -118,7 +118,7 @@ To monitor storage state changes, follow the steps below:
## Retrieve storage space information
-To get the available and total size of the storage, use the `TotalSpace` and `AvailableSpace` properties in the [Tizen.System.Storage](/application/dotnet/api/TizenFX/latest/api/Tizen.System.Storage.html) class. For internal storage, they return the storage size, excluding the minimum memory size to launch the low memory pop-up in a low memory situation. Consequently, the available size must be less than the original available size, and you must use these properties to get the memory size.
+To get total and the available size of the storage, use the `TotalSpace` and `AvailableSpace` properties in the [Tizen.System.Storage](/application/dotnet/api/TizenFX/latest/api/Tizen.System.Storage.html) class. For internal storage, they return the storage size, excluding the minimum memory size to launch the low memory pop-up in a low memory situation. Consequently, the available size must be less than the original available size, and you must use these properties to get the memory size.
To retrieve storage space information, follow the steps below:
diff --git a/docs/application/native/guides/data/data-storages.md b/docs/application/native/guides/data/data-storages.md
index c59dbcc600..30e30575ac 100755
--- a/docs/application/native/guides/data/data-storages.md
+++ b/docs/application/native/guides/data/data-storages.md
@@ -184,7 +184,7 @@ To monitor storage state changes:
## Retrieving Storage Space Information
-To get the available and total size of the storage, use the `storage_get_total_space()` and `storage_get_available_space()` functions. They return the storage size, excluding the minimum memory size to launch the low memory pop-up in a low memory situation. Consequently, the available size must be less than the original available size, and you must use these functions to get the memory size. For the same reason, you cannot use the `statvfs` function directly in Tizen. Instead, use `storage_get_internal_memory_size()` and `storage_get_external_memory_size()`. The Statvfs structure has a different structure size defined by "\__USE\_FILE\_OFFSET64". However, you can ignore this, since the Storage API uses a proper function automatically.
+To get total and the available size of the storage, use the `storage_get_total_space()` and `storage_get_available_space()` functions. They return the storage size, excluding the minimum memory size to launch the low memory pop-up in a low memory situation. Consequently, the available size must be less than the original available size, and you must use these functions to get the memory size. For the same reason, you cannot use the `statvfs` function directly in Tizen. Instead, use `storage_get_internal_memory_size()` and `storage_get_external_memory_size()`. The Statvfs structure has a different structure size defined by "\__USE\_FILE\_OFFSET64". However, you can ignore this, since the Storage API uses a proper function automatically.
To retrieve storage space information: