Skip to content

Commit 0bb340b

Browse files
committed
Fix grammar
1 parent ca33367 commit 0bb340b

13 files changed

+22
-22
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Hangfire Official Site
22
====================
33

4-
This repository hosts the Hangfire project organization pages. [Jekyll](https://github.com/mojombo/jekyll) is being used to manage page transformation in accordance with GitHub Pages usage.
4+
This repository hosts the Hangfire project organization pages. [Jekyll](https://github.com/mojombo/jekyll) is used to manage page transformation in accordance with GitHub Pages usage.
55

66
[Visit Hangfire on GitHub.](https://github.com/HangfireIO/Hangfire)
77

_posts/2014-05-02-hangfire-0.8-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Elmah library author and contributors conducted a deep investigation on a topic
5656
2. The location element's path attribute carries the same value as the path attribute of the handler registrations. Unfortunately, it has to be repeated so if you change one, the others must be updated to match.
5757
3. The authorization element is where the authorization rules go and where you will want to selectively grant access.
5858

59-
So, starting from this version, Hangfire Monitor HTTP handler is being registered under the `location` tag:
59+
So, starting from this version, Hangfire Monitor HTTP handler is registered under the `location` tag:
6060

6161
{% highlight xml %}
6262
<location path="hangfire.axd" inheritInChildApplications="false">

_posts/2014-05-17-hangfire-0.8.1-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ As always, the new version of [Hangfire](http://hangfire.io) can be installed vi
2525

2626
### Deleting jobs
2727

28-
There is a new state – `DeletedState`, and some methods to perform the deletion – `BackgroundJob.Delete` and `IBackgroundJobClient.Delete`. When you are using these methods, a job is not being actually deleted, there is only state transition. Jobs in the deleted state expire after some delay (as succeeded jobs).
28+
There is a new state – `DeletedState`, and some methods to perform the deletion – `BackgroundJob.Delete` and `IBackgroundJobClient.Delete`. When you are using these methods, a job is not actually deleted, there is only state transition. Jobs in the deleted state expire after some delay (as succeeded jobs).
2929

3030
The operation does not provides guarantee that the job will not be performed. If you deleting a job that is performing right now, it will be performed anyway, despite of calls to delete methods.
3131

_posts/2014-05-21-hangfire-0.8.2-released.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You are also able to select all jobs in one click. Many thanks to GitHub Issues
1919

2020
### Additional metrics
2121

22-
When you write the code, it is important to have an instrument to measure the performance time. ASP.NET has different diagnostic tools for this task – [Glimpse](http://getglimpse.com), [MiniProfiler](http://miniprofiler.com) and other useful ones. But they are aimed to provide information about requests only, and almost useless for background jobs – they are being executed outside of a request.
22+
When you write the code, it is important to have an instrument to measure the performance time. ASP.NET has different diagnostic tools for this task – [Glimpse](http://getglimpse.com), [MiniProfiler](http://miniprofiler.com) and other useful ones. But they are aimed to provide information about requests only, and almost useless for background jobs – they are executed outside of a request.
2323

2424
I've implemented simple diagnostic feature (and not the replacement to full-stack performance profilers, such as [dotTrace](http://www.jetbrains.com/profiler/)) for Hangfire Monitor, and now you are able to see the following timings in Hangfire Monitor:
2525

@@ -34,7 +34,7 @@ These metrics are added to the `SucceededState`, so they are also available to s
3434

3535
### DisableConcurrentExecution filter
3636

37-
This filter places a distributed lock in the beginning of a method performance and releases it after it was completed using the `IServerFilter` interface. The type and method name are being used as a locking resource. Each storage uses its own distributed lock implementation:
37+
This filter places a distributed lock in the beginning of a method performance and releases it after it was completed using the `IServerFilter` interface. The type and method name are used as a locking resource. Each storage uses its own distributed lock implementation:
3838

3939
* SQL Server uses `sp_getapplock` stored procedure;
4040
* Redis implementation uses the technique described in its [documentation](http://redis.io/commands/setnx).

_posts/2014-06-07-hangfire-0.9-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This version brings incredibly easy method of scheduling and running recurring j
1515
RecurringJob.AddOrUpdate(() => Console.Write("Easy!"), Cron.Daily);
1616
{% endhighlight %}
1717

18-
The `Cron` class provides different easy to use methods and overloads to set up recurring jobs on a minutely, hourly, weekly, monthly and yearly basis. It is also possible to use more complex [CRON expressions](http://en.wikipedia.org/wiki/Cron#CRON_expression), since the [`NCrontab`](https://code.google.com/p/ncrontab/) library is being used to perform scheduling logic.
18+
The `Cron` class provides different easy to use methods and overloads to set up recurring jobs on a minutely, hourly, weekly, monthly and yearly basis. It is also possible to use more complex [CRON expressions](http://en.wikipedia.org/wiki/Cron#CRON_expression), since the [`NCrontab`](https://code.google.com/p/ncrontab/) library is used to perform scheduling logic.
1919

2020
{% highlight csharp %}
2121
RecurringJob.AddOrUpdate(

_posts/2014-11-15-hangfire-pro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ As an ASP.NET developer, I always wanted to have something simple to handle scen
1616

1717
But every time I faced Windows Services, message queues and other difficult-to-understand problems and hard-to-maintain solutions, my head exploded into a billion pieces. At the same time I looked at Rails' [Sidekiq](http://sidekiq.org) and wished to have a simple .NET alternative for background job processing. That is why I began to develop [Hangfire](http://hangfire.io) (yep, just for the loader).
1818

19-
Slightly more than a year passed from the [first commit](https://github.com/HangfireIO/Hangfire/tree/d58a619ebc487ef28bef8c6e7f4df8e1d51ee8c5) and [first version](https://www.nuget.org/packages/Hangfire/0.1.0) of Hangfire. This was my first open-source project that is being used more than in one organization, and it was an amazing experience for me to grow a project from scratch. I'm glad to see more and more people coming to the project and giving positive ratings and unvaluable feedback.
19+
Slightly more than a year passed from the [first commit](https://github.com/HangfireIO/Hangfire/tree/d58a619ebc487ef28bef8c6e7f4df8e1d51ee8c5) and [first version](https://www.nuget.org/packages/Hangfire/0.1.0) of Hangfire. This was my first open-source project that is used more than in one organization, and it was an amazing experience for me to grow a project from scratch. I'm glad to see more and more people coming to the project and giving positive ratings and unvaluable feedback.
2020

2121
I want to keep Hangfire project as free as possible, but eliminate the most dangerous risk – the absence of time. There are many things to be done, including problems, new features, documentation, and I want to do them in a reasonable time.
2222

@@ -36,7 +36,7 @@ I understand that this step breaks your expectations, and I'm sorry for this. Th
3636

3737
[Most](https://github.com/HangfireIO/Hangfire/issues/122) [wanted](https://github.com/HangfireIO/Hangfire/issues/195) features were implemented in the next version of Hangfire.Redis package. It now includes:
3838

39-
* **Compatibility with ServiceStack 4.0** libraries. It still uses ServiceStack v3 libraries, but `ILMerge /internalize` utility is being used to merge them into Hangfire.Redis assembly. So, you can use either Service v3 or v4 in your projects.
39+
* **Compatibility with ServiceStack 4.0** libraries. It still uses ServiceStack v3 libraries, but `ILMerge /internalize` utility is used to merge them into Hangfire.Redis assembly. So, you can use either Service v3 or v4 in your projects.
4040
* **Configurable prefix for keys**. You can use now the same database for different environments by setting corresponding prefix for keys in the `RedisStorageOptions.Prefix` property.
4141

4242
### Hangfire Pro Today

_posts/2015-01-29-hangfire-1.3.3-released.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ redirect_from:
77
- /2015/01/29/hangfire-1.3.3-released.html
88
---
99

10-
This is a correcting release. Fixed a bug related to MSMQ or RabbitMQ extensions, when enqueued job is not being processed and "stucked" in the *Enqueued* state indefinitely until we retry it manually.
10+
This is a correcting release. Fixed a bug related to MSMQ or RabbitMQ extensions, when enqueued job is not processed and "stucked" in the *Enqueued* state indefinitely until we retry it manually.
1111

1212
### Release Notes
1313

14-
* **Fixed** – Enqueued job is not being processed with MSMQ or RabbitMQ.
14+
* **Fixed** – Enqueued job is not processed with MSMQ or RabbitMQ.
1515

1616
Please see the corresponding [GitHub Release](https://github.com/HangfireIO/Hangfire/releases/tag/v1.3.3) for the details.
1717

_posts/2015-04-13-hangfire-1.4.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Time zone support has been added for recurring jobs. It is based on BCL's `TimeZ
4040
<span class="string">"15 08 * * *"</span>,
4141
<span class="type">TimeZoneInfo</span>.FindSystemTimeZoneById(<span class="string">"Hawaiian Standard Time"</span>));</pre>
4242

43-
By default, UTC is being used to schedule recurring jobs, but this will be changed in 2.0 release to correspond other default values of other schedulers. Please note that time zone identifiers don't match between Windows and non-Windows machines.
43+
By default, UTC is used to schedule recurring jobs, but this will be changed in 2.0 release to correspond other default values of other schedulers. Please note that time zone identifiers don't match between Windows and non-Windows machines.
4444

4545
### Continuations
4646

_posts/2016-08-05-hangfire-1.6.2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: odinserj
44
category: release
55
---
66

7-
This correcting release contains important fixes for SQL Server and MSMQ integrations, as well as some cosmetic changes to the Dashboard UI. Major blocking problem was resolved, when using Hangfire with SQL Server, that may cause a lot of blocking records in the `State` table, preventing background processing from working flawlessly, when expired records are being removed from a database – Database Engine didn't use the right index during the query performance.
7+
This correcting release contains important fixes for SQL Server and MSMQ integrations, as well as some cosmetic changes to the Dashboard UI. Major blocking problem was resolved, when using Hangfire with SQL Server, that may cause a lot of blocking records in the `State` table, preventing background processing from working flawlessly, when expired records are removed from a database – Database Engine didn't use the right index during the query performance.
88

99
#### Hangfire.Core
1010

downloads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The Package Manage Console can be opened in Visual Studio through `Tools` &rarr;
3636

3737
## Continuous Integration Feed
3838

39-
Can't wait for a new release? Not a problem as there is a continuous integration feed for Hangfire packages hosted in [AppVeyor](http://www.appveyor.com/). After each successful commit to the `master` or `dev` branches or any open pull request based on these branches, pre-release packages are being pushed to the feed automatically. Here is its url:
39+
Can't wait for a new release? Not a problem as there is a continuous integration feed for Hangfire packages hosted in [AppVeyor](http://www.appveyor.com/). After each successful commit to the `master` or `dev` branches or any open pull request based on these branches, pre-release packages are pushed to the feed automatically. Here is its url:
4040

4141
https://ci.appveyor.com/nuget/hangfire
4242

0 commit comments

Comments
 (0)