From 96cb3a6053109341c6594423855c94b90b2b4b7b Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Tue, 19 Sep 2023 21:09:25 +0900 Subject: [PATCH] docs: use branch@remote syntax in trunk() example It's simpler, and user-specified trunk() wouldn't need fallback. --- docs/revsets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/revsets.md b/docs/revsets.md index b7f543ae66..1df7c0cda1 100644 --- a/docs/revsets.md +++ b/docs/revsets.md @@ -175,7 +175,7 @@ for a comprehensive list. ```toml [revset-aliases] - 'trunk()' = 'latest(remote_branches(exact:"your-branch", exact:"your-remote"))' + 'trunk()' = 'your-branch@your-remote' ``` ## Examples