diff --git a/MapControl/UWP/TileImageLoader.UWP.cs b/MapControl/UWP/TileImageLoader.UWP.cs
index 2c7a8465..257b69a0 100644
--- a/MapControl/UWP/TileImageLoader.UWP.cs
+++ b/MapControl/UWP/TileImageLoader.UWP.cs
@@ -12,8 +12,7 @@ namespace MapControl
public partial class TileImageLoader
{
///
- /// Default folder path where an IImageCache instance may save cached data,
- /// i.e. Windows.Storage.ApplicationData.Current.TemporaryFolder.Path.
+ /// Default folder where the Cache instance may save data.
///
public static string DefaultCacheFolder => Windows.Storage.ApplicationData.Current.TemporaryFolder.Path;
diff --git a/MapControl/WPF/TileImageLoader.WPF.cs b/MapControl/WPF/TileImageLoader.WPF.cs
index 98476dbd..d21643d9 100644
--- a/MapControl/WPF/TileImageLoader.WPF.cs
+++ b/MapControl/WPF/TileImageLoader.WPF.cs
@@ -12,7 +12,7 @@ namespace MapControl
public partial class TileImageLoader
{
///
- /// Default folder path where an IImageCache instance may save cached data, i.e. C:\ProgramData\MapControl\TileCache
+ /// Default folder where the Cache instance may save data, i.e. C:\ProgramData\MapControl\TileCache
///
public static string DefaultCacheFolder =>
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MapControl", "TileCache");
diff --git a/MapControl/WinUI/TileImageLoader.WinUI.cs b/MapControl/WinUI/TileImageLoader.WinUI.cs
index 47cd1cae..b41b74e6 100644
--- a/MapControl/WinUI/TileImageLoader.WinUI.cs
+++ b/MapControl/WinUI/TileImageLoader.WinUI.cs
@@ -13,7 +13,7 @@ namespace MapControl
public partial class TileImageLoader
{
///
- /// Default folder path where an IImageCache instance may save cached data, i.e. C:\ProgramData\MapControl\TileCache
+ /// Default folder where the Cache instance may save data, i.e. C:\ProgramData\MapControl\TileCache
///
public static string DefaultCacheFolder =>
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MapControl", "TileCache");