about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-08-23 06:26:55 +0200
committerGitHub <noreply@github.com>2024-08-23 06:26:55 +0200
commit6c2ee6fe77b4db7b1b523a8a514d67d68855eeb1 (patch)
tree7e4bbc1407c3d14d35dc1e424a61654cc1f648a8
parent32821b9f8a26524b3cbea19c44b4a068b5490e5e (diff)
parent9ad0b15a8e3e199a73bcf32ab9e56f7caa1f14a7 (diff)
downloadrust-6c2ee6fe77b4db7b1b523a8a514d67d68855eeb1.tar.gz
rust-6c2ee6fe77b4db7b1b523a8a514d67d68855eeb1.zip
Rollup merge of #129433 - GrigorenkoPV:run-make-support-path-rustdoc, r=jieyouxu
Fix a missing import in a doc in run-make-support
-rw-r--r--src/tools/run-make-support/src/path_helpers.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/run-make-support/src/path_helpers.rs b/src/tools/run-make-support/src/path_helpers.rs
index 1e6e44c4584..87901793a92 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: AsRef<Path>>(p: P) -> PathBuf {