From ca0f073a4c8bdb2ffd1ec904a77ac8cbe9de43e2 Mon Sep 17 00:00:00 2001 From: Xymph Date: Tue, 23 Aug 2022 22:18:11 +0200 Subject: [PATCH] Remove space inside 2 hyphenated words --- _posts/06-04-01-Containers.md | 4 ++-- pages/The-Basics.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_posts/06-04-01-Containers.md b/_posts/06-04-01-Containers.md index 46051bc..4e115a4 100644 --- a/_posts/06-04-01-Containers.md +++ b/_posts/06-04-01-Containers.md @@ -12,5 +12,5 @@ Locator in to your classes arguably creates a harder dependency on the container It also makes your code much less transparent and ultimately harder to test. Most modern frameworks have their own Dependency Injection Container that allows you to wire your dependencies together -through configuration. What this means in practice is that you can write application code that is as clean and de- -coupled as the framework it is built on. +through configuration. What this means in practice is that you can write application code that is as clean and +de-coupled as the framework it is built on. diff --git a/pages/The-Basics.md b/pages/The-Basics.md index f2e6d5e..711d7c8 100644 --- a/pages/The-Basics.md +++ b/pages/The-Basics.md @@ -323,8 +323,8 @@ results can vary. If you are working with a small number of values, concatenatio values, interpolating is minutely faster. Regardless of what you are doing with strings, none of the types will ever have any noticeable impact on your -application. Trying to rewrite code to use one or the other is always an exercise in futility, so avoid this micro- -optimization unless you really understand the meaning and impact of the differences. +application. Trying to rewrite code to use one or the other is always an exercise in futility, so avoid this +micro-optimization unless you really understand the meaning and impact of the differences. * [Disproving the Single Quotes Performance Myth](http://nikic.github.io/2012/01/09/Disproving-the-Single-Quotes-Performance-Myth.html)