diff --git a/mercurial/revset.py b/mercurial/revset.py index afb2ed5b37a2cd57812819afbf1542dda29c4555_bWVyY3VyaWFsL3JldnNldC5weQ==..c66ba016ebb8b84591d4be66144cdfd2780c3d22_bWVyY3VyaWFsL3JldnNldC5weQ== 100644 --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -366,7 +366,7 @@ def keyword(repo, subset, x): """``keyword(string)`` Search commit message, user name, and names of changed files for - string. + string. The match is case-insensitive. """ # i18n: "keyword" is a keyword kw = getstring(x, _("keyword requires a string")).lower() @@ -407,7 +407,7 @@ def user(repo, subset, x): """``user(string)`` - User name is string. + User name contains string. The match is case-insensitive. """ return author(repo, subset, x)