Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Change millisecond wording to reflect newest release.
  • Loading branch information
GraceAtwood authored and tallesl committed Jun 26, 2017
1 parent e98147a commit d6f7928
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Automated job scheduler with fluent interface.
* [Stopping the scheduler](#stopping-the-scheduler)
* [Dependency Injection](#dependency-injection)
* [Unexpected exceptions](#unexpected-exceptions)
* [Not milliseconds](#not-milliseconds)
* [Milliseconds Accuracy](#milliseconds-accuracy)
* [Daylight Saving Time](#daylight-saving-time)
* [Weekly jobs](#weekly-jobs)
* [Concurrent jobs](#concurrent-jobs)
Expand Down Expand Up @@ -210,13 +210,13 @@ JobManager.JobException += (info) => Log.Fatal("An error just happened with a sc

[System.Threading.Tasks.Task]: https://msdn.microsoft.com/library/System.Threading.Tasks.Task

## Not milliseconds
## Milliseconds Accuracy

The aim of the library is ease of use and flexibility, and not millisecond precision.

While we make *best efforts* to ensure the library efficiency, we don't test it for milliseconds.
Guaranteeing such precision can be tricky considering the time the library spends 'with itself'.
That's why the least interval you can set is one second.
While we make *best efforts* to ensure the library's efficiency, we don't test it for millisecond accuracy.
Guaranteeing such precision can be tricky considering the time the library has to spend 'with itself'.
As such, we provide a millisecond time unit; however, timing may not be accurate when using low intervals.

## Daylight Saving Time

Expand Down

0 comments on commit d6f7928

Please sign in to comment.