Skip to content

Commit 2bb259c

Browse files
Corrected a typo in a comment (#10811)
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.
1 parent 47f07ad commit 2bb259c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/7.5/Microsoft.PowerShell.Core/About/about_Classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class Book {
129129
$this.$Property = $Properties.$Property
130130
}
131131
}
132-
# Method to calculate reading time as 30 seconds per page
132+
# Method to calculate reading time as 2 minutes per page
133133
[timespan] GetReadingTime() {
134134
if ($this.PageCount -le 0) {
135135
throw 'Unable to determine reading time from page count.'

0 commit comments

Comments
 (0)