Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove extraneous brackets #1278

Merged
merged 1 commit into from
Nov 21, 2016
Merged
Changes from all commits
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
Remove extraneous brackets
  • Loading branch information
mattjohnsonpint authored Nov 21, 2016
commit 5f2b8a82d9a4075e93c03622221b87f8d95047d4
2 changes: 1 addition & 1 deletion docs/standard/datetime/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ In addition to the basic [System.DateTime](xref:System.DateTime) structure, .NET

* [System.DateTimeOffset](xref:System.DateTimeOffset)

Use this structure to work with dates and times whose offset (or difference) from UTC is known. The [DateTimeOffset](xref:System.DateTimeOffset)] structure combines a date and time value with that time's offset from UTC. Because of its relationship to UTC, an individual date and time value unambiguously identifies a single point in time. This makes a [DateTimeOffset](xref:System.DateTimeOffset)] value more portable from one computer to another than a [DateTime](xref:System.DateTime)] value.
Use this structure to work with dates and times whose offset (or difference) from UTC is known. The [DateTimeOffset](xref:System.DateTimeOffset) structure combines a date and time value with that time's offset from UTC. Because of its relationship to UTC, an individual date and time value unambiguously identifies a single point in time. This makes a [DateTimeOffset](xref:System.DateTimeOffset) value more portable from one computer to another than a [DateTime](xref:System.DateTime) value.

This section of the documentation provides the information that you need to work with time zones and to create time zone-aware applications that can convert dates and times from one time zone to another.

Expand Down