From 41af9ba26d7eb89ee44b8598ced25a343f1bce25 Mon Sep 17 00:00:00 2001 From: Godefroid Chapelle Date: Thu, 28 Mar 2024 11:57:29 +0100 Subject: [PATCH] Typo in revsets.md --- src/branching-merging-and-conflicts/revsets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/branching-merging-and-conflicts/revsets.md b/src/branching-merging-and-conflicts/revsets.md index 1f82493..69da230 100644 --- a/src/branching-merging-and-conflicts/revsets.md +++ b/src/branching-merging-and-conflicts/revsets.md @@ -52,7 +52,7 @@ More complex functions can take arguments: * `parents(x)`: the parent changes of `x` * `ancestors(x)`: the same as `::x`, but see the next example * `ancestors(x, depth)`: limits the results to a certain depth, which you can't do with the `::x` syntax -* `heads(x)`: commits in `x` that are not ancestors of other commtits in `x`. +* `heads(x)`: commits in `x` that are not ancestors of other commits in `x`. * `description(x)`: commits that have `x` in their description ## Putting it all together