In the docs section for Vapor Queues, update the link to
`QueuesFluentDriver` to link to the most recent iteration forked and
hosted under the `vapor-community` organization.
### Line break for options:
Added a visual line break to separate the header "Some text options:"
from the list items. This ensures proper Markdown rendering and improves
readability.
---
### Before:
Some text options:
- Example 1
- Example 2
**Rendered as:**
Some text options: - Example 1 - Example 2
---
### After:
Some text options:
(line break added)
- Example 1
- Example 2
**Rendered as:**
Some text options:
- Example 1
- Example 2
---
### Consistent visual rendering across other Markdown elements:
This change introduces a similar visual line break strategy for
informational blocks.
These adjustments ensure uniformity, improve Markdown rendering, and
maintain a cleaner visual structure across various platforms.
<!-- 🚀 Thank you for contributing! -->
<!-- Describe your changes clearly and use examples if possible. -->
* Added a small brief of the asyncDriver to allow people know you can
use that for testing
<!-- When this PR is merged, the title and body will be -->
<!-- used to generate a release automatically. -->
---------
Co-authored-by: Gwynne Raskind <gwynne@darkrainfall.org>
* Update queues.md
- adds a warning about trying to scheduled jobs outside of boot up
* Update docs/advanced/queues.md
---------
Co-authored-by: Tim Condon <0xTim@users.noreply.github.com>
I added some clarification on how to dispatch a job from within the `Application` object. Let me know wether this is okay or it actually needs some tweaking.