From 04e96da93e595364ac741868995fd03f78114401 Mon Sep 17 00:00:00 2001 From: Dave Bunten Date: Wed, 28 Feb 2024 12:13:26 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Faisal Alquaddoomi --- .../2024-02-20-Navigating-Dependency-Chaos-with-Lockfiles.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2024-02-20-Navigating-Dependency-Chaos-with-Lockfiles.md b/_posts/2024-02-20-Navigating-Dependency-Chaos-with-Lockfiles.md index cf14b48703..8c0083dfd2 100644 --- a/_posts/2024-02-20-Navigating-Dependency-Chaos-with-Lockfiles.md +++ b/_posts/2024-02-20-Navigating-Dependency-Chaos-with-Lockfiles.md @@ -30,9 +30,9 @@ This article will cover package dependency management through special files gene {% include figure.html image="https://imgs.xkcd.com/comics/reinvent_the_wheel.png" caption="'Reinvent the Wheel' comic by Randall Munroe, XKCD." %} There are various advantages to using packaged dependencies in your projects. -Using existing work this way practices a collective ["don't repeat yourself [or ourselves]" (DRY)](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself) to avoid [reinventing the wheel](https://en.wikipedia.org/wiki/Reinventing_the_wheel). +Using existing work this way practices a collective ["don't repeat yourself [or ourselves]" (DRY)](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself) among the global community of software developers to avoid [reinventing the wheel](https://en.wikipedia.org/wiki/Reinventing_the_wheel). Using dependencies allows us to make explicit decisions about the specific focus, or context, which the project will prioritize. -While it's oftentimes easy to include and use dependencies in a project they come with important risks that are important to consider. +While it's oftentimes easy to include and use dependencies in a project they come with risks that are important to consider. ## The dependency wilderness