From 30599a5213284d4d95b3923e3870812fbd321128 Mon Sep 17 00:00:00 2001 From: Patrick Roy Date: Tue, 14 Oct 2025 08:25:21 +0200 Subject: [PATCH] fix typo in cargo doc test The environment variable that we pass to indicate the a docs build is happening was misspelling "RUST" as "RUTS". Signed-off-by: Patrick Roy --- .buildkite/test_description.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/test_description.json b/.buildkite/test_description.json index 9fdcdf3..1542bf8 100644 --- a/.buildkite/test_description.json +++ b/.buildkite/test_description.json @@ -29,7 +29,7 @@ }, { "test_name": "doc", - "command": "RUSTDOCFLAGS=\"-D warnings\" RUSTFLAGS=\"--cfg RUTSDOC_disable_feature_compat_errors\" cargo doc --workspace --all-features --no-deps" + "command": "RUSTDOCFLAGS=\"-D warnings\" RUSTFLAGS=\"--cfg RUSTDOC_disable_feature_compat_errors\" cargo doc --workspace --all-features --no-deps" }, { "test_name": "unittests-gnu",