From bfe97d63c651626dd0812bb3f8e3d77b999ac75c Mon Sep 17 00:00:00 2001 From: Chris Price Date: Tue, 30 Aug 2016 14:13:32 -0700 Subject: [PATCH] Fix typo in example usage of lein-parent --- doc/MANAGED_DEPS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/MANAGED_DEPS.md b/doc/MANAGED_DEPS.md index 77ee96dfa..23212f223 100644 --- a/doc/MANAGED_DEPS.md +++ b/doc/MANAGED_DEPS.md @@ -68,13 +68,13 @@ will allow you to define a single "parent" project that is inherited by multiple (defproject superfun/kid-a "1.0.0-SNAPSHOT" :parent-project [:coords [superfun/myparent "1.0.0"] - :inherits [:managed-dependencies]] + :inherit [:managed-dependencies]] :dependencies [[clj-time] [me.raynes/fs]]) (defproject superfun/kid-b "1.0.0-SNAPSHOT" :parent-project [:coords [superfun/myparent "1.0.0"] - :inherits [:managed-dependencies]] + :inherit [:managed-dependencies]] :dependencies [[clj-time] [ring/ring-codec]]) ```