aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdutils
diff options
context:
space:
mode:
authorRoj <rojvv@icloud.com>2026-04-06 18:55:17 +0300
committerlevlam <levlam@telegram.org>2026-04-09 15:20:20 +0300
commitaea46d7b1413c663b88243cbf398401d2c27738d (patch)
tree6de3abf6edc5452332a3aa0ff25f5cedaa55ea47 /tdutils
parent6b82cc8323154a74857e21798cd48c10f7c9ff67 (diff)
Fix typos.
Diffstat (limited to 'tdutils')
-rw-r--r--tdutils/td/utils/Closure.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdutils/td/utils/Closure.h b/tdutils/td/utils/Closure.h
index 19e48efeb..f4fa3566a 100644
--- a/tdutils/td/utils/Closure.h
+++ b/tdutils/td/utils/Closure.h
@@ -46,7 +46,7 @@
// Tmp->Ref + / move->+
// Var->Val copy / copy->move
// Var->CnstRef + / copy->
-// Var->Ref + / copy->+ // khm. It will complile, but won't work
+// Var->Ref + / copy->+ // khm. It will compile, but won't work
//
// So I will use common idiom: forward references
// If delay is needed, just std::forward data to temporary storage, and std::move them when call is executed.