From a7d78829314f368479109a4977f14595ef1b324b Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 30 Jul 2019 00:43:08 +0300 Subject: [PATCH] Fix misprint. GitOrigin-RevId: 919dcb9bc3d21c4006a24de32dfc1f6e25056e4f --- td/telegram/MessageEntity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td/telegram/MessageEntity.cpp b/td/telegram/MessageEntity.cpp index a11ca08a..8defb374 100644 --- a/td/telegram/MessageEntity.cpp +++ b/td/telegram/MessageEntity.cpp @@ -1568,7 +1568,7 @@ Result> parse_html(string &text) { } if (text[i] == 0) { return Status::Error(400, - PSLICE() << "Can't found end tag corresponding to start tag at byte offset " << begin_pos); + PSLICE() << "Can't find end tag corresponding to start tag at byte offset " << begin_pos); } auto end_tag_begin_pos = i++;