From cbe9d628c80ace37b2127d56621813e5bd9f151c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kh=E1=BA=A3i?= Date: Wed, 22 Nov 2023 11:00:01 +0700 Subject: [PATCH] docs: make it appears nicer --- crates/package-manager/src/install_without_lockfile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/package-manager/src/install_without_lockfile.rs b/crates/package-manager/src/install_without_lockfile.rs index b92e3b72..6525ed9d 100644 --- a/crates/package-manager/src/install_without_lockfile.rs +++ b/crates/package-manager/src/install_without_lockfile.rs @@ -13,7 +13,7 @@ use pipe_trait::Pipe; /// In-memory cache for packages that have started resolving dependencies. /// /// The contents of set is the package's virtual_store_name. -/// e.g. @pnpm.e2e/dep-1@1.0.0 -> @pnpm.e2e+dep-1@1.0.0 +/// e.g. `@pnpm.e2e/dep-1@1.0.0` → `@pnpm.e2e+dep-1@1.0.0` pub type ResolvedPackages = DashSet; /// This subroutine install packages from a `package.json` without reading or writing a lockfile.