Merge pull request #32 from imbolc/patch-2

Readme example forgotten unwrap
This commit is contained in:
Diggory Blake 2022-07-05 16:09:41 +01:00 committed by GitHub
commit 46c03f8e99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,7 +190,7 @@ The final step is to actually run a job.
example_job.builder()
// This is where we can override job configuration
.set_channel_name("bar")
.set_json("John")
.set_json("John")?
.spawn(&pool)
.await?;
```