Skip to content

Commit 0d4832d

Browse files
authored
Update README.md
1 parent 33f72e9 commit 0d4832d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Below is a small sampling of the things you can accomplish with DateTimeExtensio
1919

2020
### Business Day
2121

22-
Quickly calculate if a datetime is within your hours of business. Check out our [unit tests](https://github.com/exceptionless/Exceptionless.DateTimeExtensions/blob/master/tests/Exceptionless.DateTimeExtensions/BusinessDayTests.cs) for more usage samples.
22+
Quickly calculate if a datetime is within your hours of business. Check out our [unit tests](https://github.com/exceptionless/Exceptionless.DateTimeExtensions/blob/master/test/Exceptionless.DateTimeExtensions.Tests/BusinessDayTests.cs) for more usage samples.
2323

2424
```csharp
2525
var date = DateTime.Now.StartOfDay().AddHours(8);
@@ -33,7 +33,7 @@ bool isDay = day.IsBusinessDay(date);
3333

3434
### DateTime Ranges
3535

36-
Quickly work with date ranges. . Check out our [unit tests](https://github.com/exceptionless/Exceptionless.DateTimeExtensions/blob/master/tests/Exceptionless.DateTimeExtensions/DateTimeRangeTests.cs) for more usage samples.
36+
Quickly work with date ranges. . Check out our [unit tests](https://github.com/exceptionless/Exceptionless.DateTimeExtensions/blob/master/test/Exceptionless.DateTimeExtensions.Tests/DateTimeRangeTests.cs) for more usage samples.
3737

3838
```csharp
3939
var range = DateTimeRange.Parse("yesterday", DateTime.Now);
@@ -44,7 +44,7 @@ if (range.Contains(DateTime.Now.Subtract(TimeSpan.FromHours(6)))) {
4444

4545
### TimeUnit
4646

47-
Quickly work with time units. . Check out our [unit tests](https://github.com/exceptionless/Exceptionless.DateTimeExtensions/blob/master/tests/Exceptionless.DateTimeExtensions/TimeUnitTests.cs) for more usage samples.
47+
Quickly work with time units. . Check out our [unit tests](https://github.com/exceptionless/Exceptionless.DateTimeExtensions/blob/master/test/Exceptionless.DateTimeExtensions.Tests/TimeUnitTests.cs) for more usage samples.
4848

4949
```csharp
5050
TimeSpan oneNanosecond = TimeUnit.Parse("1nanos");

0 commit comments

Comments
 (0)