From c121e6c9975857d14ab585da93fd558ef19a4590 Mon Sep 17 00:00:00 2001 From: Imbolc Date: Tue, 5 Jul 2022 12:46:35 +0300 Subject: [PATCH] Readme example forgotten unwrap --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bc7d55..3b5faaa 100644 --- a/README.md +++ b/README.md @@ -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?; ```