Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update src/libraries/System.Private.CoreLib/src/System/DateTimeOffset.cs
Co-authored-by: Eirik Tsarpalis <[email protected]>
  • Loading branch information
tarekgh and eiriktsarpalis authored Nov 29, 2022
commit aac55809827771b180f2d80e4fa79664950d5ead
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ public DateTimeOffset ToOffset(TimeSpan offset) =>
public TimeSpan Offset => new TimeSpan(0, _offsetMinutes, 0);

/// <summary>
/// Gets the total number of minutes represented the time's offset from Coordinated Universal Time (UTC).
/// Gets the total number of minutes representing the time's offset from Coordinated Universal Time (UTC).
/// </summary>
public int TotalOffsetMinutes => _offsetMinutes;

Expand Down