From 9ad0b15a8e3e199a73bcf32ab9e56f7caa1f14a7 Mon Sep 17 00:00:00 2001 From: Pavel Grigorenko Date: Fri, 23 Aug 2024 02:44:15 +0300 Subject: [PATCH] Fix a missing import in a doc in run-make-support --- src/tools/run-make-support/src/path_helpers.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/run-make-support/src/path_helpers.rs b/src/tools/run-make-support/src/path_helpers.rs index 1e6e44c458423..87901793a921e 100644 --- a/src/tools/run-make-support/src/path_helpers.rs +++ b/src/tools/run-make-support/src/path_helpers.rs @@ -21,6 +21,7 @@ pub fn cwd() -> PathBuf { /// # Example /// /// ```rust +/// # use run_make_support::path; /// let p = path("support_file.txt"); /// ``` pub fn path>(p: P) -> PathBuf {