From 8c9e9738e3c738e01de6143ba7185801fa5e2893 Mon Sep 17 00:00:00 2001 From: bodymindarts Date: Wed, 7 Feb 2024 11:07:56 +0100 Subject: [PATCH] fix: typo --- core/notifications/src/executor/fcm/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/notifications/src/executor/fcm/mod.rs b/core/notifications/src/executor/fcm/mod.rs index 14ec38ca9de..40d182023f5 100644 --- a/core/notifications/src/executor/fcm/mod.rs +++ b/core/notifications/src/executor/fcm/mod.rs @@ -37,6 +37,6 @@ impl FcmClient { } pub async fn _send(&self, message: String) -> Result<(), FcmError> { - unimplemnted!() + unimplemented!() } }