From 9d4f56114fa792d50828d203c8c7d87aba0ecca9 Mon Sep 17 00:00:00 2001
From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
Date: Mon, 26 Jun 2023 14:38:28 +0200
Subject: [PATCH] docs: replace comment with improved sentence (#22981)

---
 docs/development/adding-a-package-manager.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/development/adding-a-package-manager.md b/docs/development/adding-a-package-manager.md
index 87937afd3e..6c70ba8e00 100644
--- a/docs/development/adding-a-package-manager.md
+++ b/docs/development/adding-a-package-manager.md
@@ -66,7 +66,7 @@ For example the npm and Yarn package manager must process the `package.json` and
 This allows features like Lerna and Workspaces to work.
 This means that for npm or Yarn we need to iterate through all package files after the initial parsing.
 
-As another example, Gradle needs to call a command via a child process in order to extract dependencies, so that must be done first. //Unclear what that must be done first refers to here...
+As another example, in order for Gradle to extract dependencies Renovate must first call a command via a child process.
 
 The `extractAllPackageFiles` function takes an array of filenames as input.
 It returns an array of filenames and dependencies.
-- 
GitLab