From b437ab86d14605d2f5358485722edd1874b54948 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Fri, 2 Oct 2020 03:24:06 +0300 Subject: [PATCH] Fix a typo: "probram" --- src/stock.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stock.rs b/src/stock.rs index 31a37909c..4499cae49 100644 --- a/src/stock.rs +++ b/src/stock.rs @@ -404,7 +404,7 @@ impl Context { pub async fn update_device_chats(&self) -> Result<(), Error> { // check for the LAST added device message - if it is present, we can skip message creation. // this is worthwhile as this function is typically called - // by the ui on every probram start or even on every opening of the chatlist. + // by the UI on every program start or even on every opening of the chatlist. if chat::was_device_msg_ever_added(&self, "core-welcome").await? { return Ok(()); }