Skip to content

Commit

Permalink
Fix typo on AsRandomAccessStream method. (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
azchohfi authored Apr 22, 2020
1 parent cf83965 commit 952560f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public static IOutputStream AsOutputStream(this Stream stream)
}


public static IRandomAccessStream AsrandomAccessStream(this Stream stream)
public static IRandomAccessStream AsRandomAccessStream(this Stream stream)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream));
Expand Down

0 comments on commit 952560f

Please sign in to comment.