diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-28 12:45:42 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-28 12:45:42 +1000 |
commit | 7c7d24600b3db2675b691ae6345ef3fefab03dbd (patch) | |
tree | 27bdca654ca7336acc9018aeedbf6a46751a85c2 /sway/tree/container.c | |
parent | b2c0ba5b180b75a18e622934bbed61b0f14b1661 (diff) |
Fix ancestor typos
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index a4798c7e..59137d88 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -656,11 +656,11 @@ void container_for_each_descendant_bfs(struct sway_container *con, } } -bool container_has_anscestor(struct sway_container *descendant, - struct sway_container *anscestor) { +bool container_has_ancestor(struct sway_container *descendant, + struct sway_container *ancestor) { while (descendant->type != C_ROOT) { descendant = descendant->parent; - if (descendant == anscestor) { + if (descendant == ancestor) { return true; } } |