Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 46cf7c7

Browse files
committed
🎨 Specify type name of comment parameter
1 parent 6505ac6 commit 46cf7c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Exports.Reactive/Caches/IImageCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public interface IImageCache : IDisposable
1010
/// Retrieves the image from the cache. If it's missing, it'll download it and cache it.
1111
/// </summary>
1212
/// <param name="url">The image Uri to fetch.</param>
13-
/// <exception cref="KeyNotFoundException">Thrown if an image is missing and could not be fetched.</exception>
13+
/// <exception cref="System.Collections.Generic.KeyNotFoundException">Thrown if an image is missing and could not be fetched.</exception>
1414
IObservable<BitmapSource> GetImage(Uri url);
1515

1616
/// <summary>

0 commit comments

Comments
 (0)