Skip to content

Commit e1bec7b

Browse files
authored
fix extention typo (#30461)
1 parent e6513f5 commit e1bec7b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Core/src/ImageSources/FileImageSourceService/FileImageSourceService.iOS.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public partial class FileImageSourceService
2323
{
2424
using var cgImageSource = imageSource.GetPlatformImageSource(out var loadedScale);
2525

26-
// If the user doesn't specify the extention, then we fall back to just letting iOS load the file
27-
// This means, if users try to load a animated gif and don't specify an extention it won't animate
26+
// If the user doesn't specify the extension, then we fall back to just letting iOS load the file
27+
// This means, if users try to load a animated gif and don't specify an extension it won't animate
2828
// We could do a search with various extensions but that's a lot of excess churn for a scenario
2929
// that's easily fixed by the user. Plus, the extension is required on other platforms so it's actually
3030
// more consistent to not load the gif on iOS without the extension.

src/Templates/src/templates/maui-mobile/Utilities/ProjectExtentions.cs renamed to src/Templates/src/templates/maui-mobile/Utilities/ProjectExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
namespace MauiApp._1.Utilities;
55

66
/// <summary>
7-
/// Project Model Extentions
7+
/// Project Model Extensions
88
/// </summary>
9-
public static class ProjectExtentions
9+
public static class ProjectExtensions
1010
{
1111
/// <summary>
1212
/// Check if the project is null or new.

0 commit comments

Comments
 (0)