aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/container.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r--sway/tree/container.c6
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;
}
}