Skip to content

Commit 1ebd7b0

Browse files
docs: correct stale references found in nightly survey (#3490)
1 parent 7735d11 commit 1ebd7b0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

benches/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cargo bench --bench list skeleton/warm
1313
# Run specific group (all variants)
1414
cargo bench --bench list full
1515

16-
# GH #461 scenario (200 branches on rust-lang/rust)
16+
# GH #461 scenario (50 branches at varying history depths on rust-lang/rust)
1717
cargo bench --bench list real_repo_many_branches
1818

1919
# All list benchmarks (~1 hour)

src/commands/list/ci_status/github.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ pub(super) fn detect_github_commit_checks(
270270
/// GitHub PR info from `gh pr list --json ...`
271271
///
272272
/// Note: We include `headRepositoryOwner` for client-side filtering by source fork.
273-
/// See `parse_owner_repo()` for why this is necessary.
273+
/// See the `# Filtering Strategy` docs on [`detect_github`] for why this is necessary.
274274
///
275275
/// Note: We don't include `state` because we already filter with `--state open`.
276276
#[derive(Debug, Deserialize)]
@@ -301,7 +301,7 @@ pub(crate) struct GitHubPrInfo {
301301
pub status_check_rollup: Option<Vec<GitHubCheck>>,
302302
pub url: Option<String>,
303303
/// The owner of the repository the PR's head branch comes from.
304-
/// Used to filter PRs by source fork (see `parse_owner_repo()`).
304+
/// Used to filter PRs by source fork (see the `# Filtering Strategy` docs on [`detect_github`]).
305305
#[serde(rename = "headRepositoryOwner")]
306306
pub head_repository_owner: Option<HeadRepositoryOwner>,
307307
/// GraphQL review decision: "APPROVED", "CHANGES_REQUESTED",

src/commands/list/ci_status/gitlab.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ pub(super) fn detect_gitlab_pipeline(
302302
/// Use [`fetch_mr_details`] with the `iid` to get complete MR info.
303303
///
304304
/// We include `source_project_id` for client-side filtering by source project.
305-
/// See `parse_owner_repo()` for why we filter by source, not by author.
305+
/// See the `# Filtering Strategy` docs on [`detect_gitlab`] for why we filter by source, not by author.
306306
#[derive(Debug, Default, Deserialize)]
307307
struct GitLabMrAuthor {
308308
#[serde(default)]

0 commit comments

Comments
 (0)