From 9777ee461de8f601ce1a18d92b6213990e7204d2 Mon Sep 17 00:00:00 2001 From: "James D. Bartlett III" <37491308+JamesDBartlett3@users.noreply.github.com> Date: Fri, 19 Jan 2024 14:54:46 -0600 Subject: [PATCH] Corrected a typo in a comment Comment said "Method to calculate reading time as 30 seconds per page" but the method actually calculates reading time as 2 minutes per page, so I corrected the comment to match the method. --- reference/7.5/Microsoft.PowerShell.Core/About/about_Classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/7.5/Microsoft.PowerShell.Core/About/about_Classes.md b/reference/7.5/Microsoft.PowerShell.Core/About/about_Classes.md index b4194d486a39..596ae9b35393 100644 --- a/reference/7.5/Microsoft.PowerShell.Core/About/about_Classes.md +++ b/reference/7.5/Microsoft.PowerShell.Core/About/about_Classes.md @@ -129,7 +129,7 @@ class Book { $this.$Property = $Properties.$Property } } - # Method to calculate reading time as 30 seconds per page + # Method to calculate reading time as 2 minutes per page [timespan] GetReadingTime() { if ($this.PageCount -le 0) { throw 'Unable to determine reading time from page count.'