Skip to content

Commit

Permalink
Clean up the documentation a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
jgeurts committed Sep 10, 2013
1 parent f07d561 commit b7b24b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion FluentScheduler/package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<summary>A task scheduler that uses fluent interface to configure schedules. Useful for running cron jobs/automated tasks from your application.</summary>
<language>en-US</language>
<tags>Library task-scheduler tasks cron</tags>
<releaseNotes>v2.0.0 Changes:
<releaseNotes>v2.0 Changes:
* Strongly named assembly
* TaskManager.TaskFactory replaces Registry.GetTaskInstance() method
* Allow basic continuations with schedules
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ public class MyRegistry : Registry

//Schedule multiple tasks to be run in a single schedule
Schedule<MyTask>().AndThen<MyOtherTask>().ToRunNow().AndEvery(5).Minutes();

//Schedule multiple tasks to be run in a single schedule concurrently
Schedule<MyTask>().AndThen<MyOtherTask>().Concurrently().ToRunNow();
}
}
```
Expand Down

0 comments on commit b7b24b6

Please sign in to comment.