Skip to content

Commit

Permalink
Merge pull request OptimalBits#829 from vhf/doc-fix-1
Browse files Browse the repository at this point in the history
Fix reference interface name
  • Loading branch information
manast authored Jan 4, 2018
2 parents c734e79 + 07c5701 commit 52e87d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The optional ```url``` argument, allows to specify a redis connection string suc
```redis://[email protected]:1234```

```typescript
interface QueueOpts{
interface QueueOptions {
limiter?: RateLimiter;
redis?: RedisOpts;
prefix?: string = 'bull'; // prefix for all queue keys.
Expand Down Expand Up @@ -117,7 +117,7 @@ __Warning:__ Do not override these advanced settings unless you understand the i
* Consider these as overloaded functions. Since method overloading doesn't exist in javacript
* bull recognizes the desired function call by checking the parameters' types. Make sure you
* comply with one of the below defined patterns.
*
*
* Note: Concurrency defaults to 1 if not specified.
*/
process(processor: (job, done?) => Promise<any> | string)
Expand Down

0 comments on commit 52e87d9

Please sign in to comment.