From be68b5b6a2a77a662460dd65abadf2c23978400b Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sat, 4 Jan 2025 11:27:52 -0600 Subject: [PATCH] Fix some small mistakes in the documentation --- README.md | 6 +++--- ubi/src/lib.rs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d31c02e..df7e7ee 100644 --- a/README.md +++ b/README.md @@ -151,9 +151,9 @@ executable will use the name of the project instead. This is a bit inconsistent, but it's how `ubi` has behaved since it was created, and I find this to be the sanest behavior. Some projects, for example `rust-analyzer`, provide releases as compressed -executables with names like `rust-analyzer-x86_64-apple-darwin.gz` and -`rust-analyzer-x86_64-unknown-linux-musl.gz`, so installing these as `rust-analyzer` seems like -better behavior. +executables with names like `rust-analyzer-x86_64-apple-darwin` and +`rust-analyzer-x86_64-unknown-linux-musl`, so installing these as `rust-analyzer` seems like better +behavior. ## How `ubi` Finds the Right Release Artifact diff --git a/ubi/src/lib.rs b/ubi/src/lib.rs index cb20d8d..618b0d0 100644 --- a/ubi/src/lib.rs +++ b/ubi/src/lib.rs @@ -37,8 +37,8 @@ //! //! This is a bit inconsistent, but it's how `ubi` has behaved since it was created, and I find this //! to be the sanest behavior. Some projects, for example `rust-analyzer`, provide releases as -//! compressed executables with names like `rust-analyzer-x86_64-apple-darwin.gz` and -//! `rust-analyzer-x86_64-unknown-linux-musl.gz`, so installing these as `rust-analyzer` seems like +//! executables with names like `rust-analyzer-x86_64-apple-darwin` and +//! `rust-analyzer-x86_64-unknown-linux-musl`, so installing these as `rust-analyzer` seems like //! better behavior. //! //!