Skip to content

Commit

Permalink
minor docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
guryanovev committed Mar 18, 2019
1 parent 6f57bbb commit b1492f1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/source/_posts/configuring-allowed-job-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ app.UseCrystalQuartz(
{
typeof(SendMailJob)
/* Place Job Types here */
},
TimelineSpan = TimeSpan.FromMinutes(10)
}
});
```

Expand All @@ -70,8 +69,7 @@ app.UseCrystalQuartz(
x.IsClass &&
!x.IsAbstract &&
typeof(IJob).IsAssignableFrom(x))
.ToArray(),
TimelineSpan = TimeSpan.FromMinutes(10)
.ToArray()
});
```

Expand Down

0 comments on commit b1492f1

Please sign in to comment.