From ae0486dcdeef5be013d3cda84d0c2c50dc32efc2 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Wed, 23 Jul 2025 15:58:39 +0300 Subject: [PATCH] docs: extend RepositoryContentGetOptions description --- github/repos_contents.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github/repos_contents.go b/github/repos_contents.go index 5d7329c4ffe..3b24b6d4e6d 100644 --- a/github/repos_contents.go +++ b/github/repos_contents.go @@ -62,7 +62,7 @@ type RepositoryContentFileOptions struct { } // RepositoryContentGetOptions represents an optional ref parameter, which can be a SHA, -// branch, or tag. +// branch, or tag. E.g., `6540c41b`, `heads/main`, `tags/v1.0`. type RepositoryContentGetOptions struct { Ref string `url:"ref,omitempty"` }