From 8e580ded376d495f6fb2a3127bcfef13e5c092e3 Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Wed, 22 Nov 2023 18:24:41 -0600 Subject: [PATCH] fix typos --- content/reference/deps_edn.adoc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/reference/deps_edn.adoc b/content/reference/deps_edn.adoc index 8bd41615..43ec420a 100644 --- a/content/reference/deps_edn.adoc +++ b/content/reference/deps_edn.adoc @@ -44,7 +44,7 @@ If you are building a tool that would like to leverage deps.edn, create well-kno <> [lib1 lib2]}} ;; Aliases give a name to any set of edn data - <> { + <> { :alias-name { <> {lib coord} <> {lib coord} @@ -55,7 +55,7 @@ If you are building a tool that would like to leverage deps.edn, create well-kno <> ["p1" "p2"] <> ["p1" "p2"] <> ["p1" "p2"] - <> {lib "path"} + <> {lib "path"} <> namespace <> {alias namespace} @@ -75,8 +75,8 @@ If you are building a tool that would like to leverage deps.edn, create well-kno <> {#_same_as_releases}}} ;; Tool publishing - <> {<> namespace - <> {alias namespace}} + <> {< namespace + <> {alias namespace}} ;; Lib that requires preparation (compilation) before use <> {<> "target/classes" @@ -243,7 +243,7 @@ The `:exclusions` attribute takes a vector of lib symbols to exclude as transiti The `:deps/root` attribute indicates a relative directory path within a file-based dep to search for the manifest file. It is commonly used with monorepo style projects to specify a dep root in a directory below the repo root. [[deps_deps_manifest]] -=== `:deps/manifest +=== `:deps/manifest` The `:deps/manifest` attribute specifies the project manifest type and overrides auto detection, useful values are `:deps`, `:pom`. (Other values are `:mvn`, and `:jar` but these don't need to be specified.) @@ -415,17 +415,17 @@ The `:releases` attribute is optional, but can be used to override the default r Same as the `:releases` attribute, but used to apply repository policy for snapshot artifacts. [[procurer_mvn_repos_enabled]] -====== `:enabled` +===== `:enabled` `:enabled` is a boolean, default=true. Sometimes this is used to target a repository only for releases or snapshots. [[procurer_mvn_repos_update]] -====== `:update` +===== `:update` `:update` is a flag for how often to check the repo for updates, valid values are `:daily` (default), `:always`, `:never`, or an interval in minutes (integer). [[procurer_mvn_repos_checksum]] -====== `:checksum` +===== `:checksum` `:checksum` is a flag for checksum validation, one of `:warn` (default), `:fail`, `:ignore`.