From 6cd37b97dee9cd8d76a760dbb7eb5bf106ffb258 Mon Sep 17 00:00:00 2001 From: David Britch Date: Mon, 24 Mar 2025 16:56:13 +0000 Subject: [PATCH] Format code correctly --- docs/platform-integration/includes/android-fileproviderpaths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platform-integration/includes/android-fileproviderpaths.md b/docs/platform-integration/includes/android-fileproviderpaths.md index 98b48ec46..21b6e4ccf 100644 --- a/docs/platform-integration/includes/android-fileproviderpaths.md +++ b/docs/platform-integration/includes/android-fileproviderpaths.md @@ -23,7 +23,7 @@ For more information about file provider paths, see [FileProvider](https://devel Prior to sharing a file, you should ensure it's first written to the *sharing-root* folder in one of the locations from the override file: -```cs +```csharp // Write into the specific sub-directory var dir = Path.Combine(FileSystem.CacheDirectory, "sharing-root"); Directory.CreateDirectory(dir);