From ffe08d190e2ab46e143d8eb34bf1632d75f591e7 Mon Sep 17 00:00:00 2001 From: JakobL <4244486+Aarkon@users.noreply.github.com> Date: Tue, 9 May 2023 14:11:52 +0000 Subject: [PATCH] missing scala keyword in code block (#377) --- site/docs/docs/events-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/docs/docs/events-api.md b/site/docs/docs/events-api.md index cefb0177..4f9e22e8 100644 --- a/site/docs/docs/events-api.md +++ b/site/docs/docs/events-api.md @@ -55,7 +55,7 @@ post a message back using the specified url from those events. To help with these scenarios, you can use `SlackApiClient.events.reply()`, which doesn't require any tokens to work: -``` +```scala client.events .reply( response_url = response_url, @@ -94,4 +94,4 @@ signatureVerifier. case Right(success) => // the signature is verified case Left(err) => // absent or wrong signature } -``` \ No newline at end of file +```