Skip to content

Commit cdff22f

Browse files
Panda-SharpSergio0694
authored andcommitted
Small fixes
1 parent c224e81 commit cdff22f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Microsoft.Toolkit.Uwp.SampleApp/SamplePages/SystemInformation/SystemInformationCode.bind

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
public PackageVersion FirstVersionInstalled => SystemInformation.Instance.FirstVersionInstalled;
3939

4040
// To get the previous version installed
41-
public string PreviousVersionInstalled => SystemInformation.Instance.PreviousVersionInstalled.ToFormattedString();
41+
public PackageVersion PreviousVersionInstalled => SystemInformation.Instance.PreviousVersionInstalled;
4242

4343
// To get the first time the app was launched
4444
public DateTime FirstUseTime => SystemInformation.Instance.FirstUseTime;

Microsoft.Toolkit.Uwp/Helpers/SystemInformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public static async Task LaunchStoreForReviewAsync()
124124
/// <summary>
125125
/// Gets the previous version of the app that was installed.
126126
/// This will be the current version if a previous version of the app was installed
127-
/// before using SystemInformation or if the app is not updated.
127+
/// before using <see cref="SystemInformation"/> or if the app is not updated.
128128
/// </summary>
129129
public PackageVersion PreviousVersionInstalled { get; }
130130

0 commit comments

Comments
 (0)