summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakhropov <[email protected]>2025-03-28 21:12:57 +0300
committerakhropov <[email protected]>2025-03-28 22:09:20 +0300
commit9285e524b2297f0beed07bc6ca90b412136abd50 (patch)
tree6cf7b4b8ffdb51c1628b8fd0a260c9f7f457cfac
parentd251dd86e4cf7cc5e2ee2fa01c2392da5bc9f3e3 (diff)
Fix grammar
commit_hash:acff119fbd5252738b5c3a948a428b3cb2a36801
-rw-r--r--util/generic/ptr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/generic/ptr.h b/util/generic/ptr.h
index 7057949bc42..625418ccdb0 100644
--- a/util/generic/ptr.h
+++ b/util/generic/ptr.h
@@ -95,7 +95,7 @@ public:
private:
/*
- * we do not want dependancy on cstdlib here...
+ * we do not want a dependency on cstdlib here...
*/
static void DoDestroy(void* t) noexcept;
};
@@ -161,7 +161,7 @@ public:
};
/*
- * void*-like pointers does not have operator*
+ * void*-like pointers do not have operator*
*/
template <class Base>
class TPointerBase<Base, void>: public TPointerCommon<Base, void> {