summaryrefslogtreecommitdiffstats
path: root/ta/README
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-13 18:56:42 +0200
committerwm4 <wm4@nowhere>2014-10-13 18:56:42 +0200
commitbe0896c173c6a9c651670d3d414a0f5abea764a1 (patch)
treea5df00cf6b430b7aafa272e4c4aa1bf8867856e0 /ta/README
parente9b0a61444dc6496b7032858364ea34a0d99bd7b (diff)
downloadmpv-be0896c173c6a9c651670d3d414a0f5abea764a1.tar.bz2
mpv-be0896c173c6a9c651670d3d414a0f5abea764a1.tar.xz
ta/README: fix typos
Diffstat (limited to 'ta/README')
-rw-r--r--ta/README4
1 files changed, 2 insertions, 2 deletions
diff --git a/ta/README b/ta/README
index d2cc4fbc0c..271e173764 100644
--- a/ta/README
+++ b/ta/README
@@ -1,10 +1,10 @@
TA ("Tree Allocator") is a wrapper around malloc() and related functions,
-adding features like automatically free sub-trees of memory allocations if
+adding features like automatically freeing sub-trees of memory allocations if
a parent allocation is freed.
Generally, the idea is that every TA allocation can have a parent (indicated
by the ta_parent argument in allocation function calls). If a parent is freed,
-its child allocations are automatically freed as well. It's also allowed the
+its child allocations are automatically freed as well. It is also allowed to
free a child before the parent, or to move a child to another parent with
ta_set_parent().