From 0e44b367ed24df691330f248b69ba574d5cb4aa4 Mon Sep 17 00:00:00 2001
From: Ratys <alexander.sepity@gmail.com>
Date: Wed, 2 Dec 2020 10:57:01 +0300
Subject: [PATCH 1/3] Added "ECS scheduler thoughts, part 1" entry

---
 content/posts/newsletter-016/index.md | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/content/posts/newsletter-016/index.md b/content/posts/newsletter-016/index.md
index f83eadf6c..a4fc6a2b3 100644
--- a/content/posts/newsletter-016/index.md
+++ b/content/posts/newsletter-016/index.md
@@ -65,6 +65,19 @@ If needed, a section can be split into subsections with a "------" delimiter.
 
 ## Learning Material Updates
 
+### [ECS scheduler thoughts, part 1][article]
+
+[@Ratys] wrote an article about system schedulers in [ECS][ECS].
+It contains an overview of the scheduling problem itself, covers
+the constraints a solution to it should consider, and dissects
+schedulers of [Bevy] engine and [`yaks`] as examples.
+
+[article]: https://ratysz.github.io/article/scheduling-1/
+[@Ratys]: https://twitter.com/ratysz
+[ECS]: https://en.wikipedia.org/wiki/Entity_component_system
+[Bevy]: https://bevyengine.org/
+[`yaks`]: https://crates.io/crates/yaks
+
 ## Library & Tooling Updates
 
 ## Popular Workgroup Issues in Github

From e9ff6f715ffa8dc6bd3ce729a9ec36e3db161ef3 Mon Sep 17 00:00:00 2001
From: Ratys <alexander.sepity@gmail.com>
Date: Wed, 2 Dec 2020 11:06:03 +0300
Subject: [PATCH 2/3] Soft breaks 70->80 chars

---
 content/posts/newsletter-016/index.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/content/posts/newsletter-016/index.md b/content/posts/newsletter-016/index.md
index a4fc6a2b3..c9910b60e 100644
--- a/content/posts/newsletter-016/index.md
+++ b/content/posts/newsletter-016/index.md
@@ -67,10 +67,10 @@ If needed, a section can be split into subsections with a "------" delimiter.
 
 ### [ECS scheduler thoughts, part 1][article]
 
-[@Ratys] wrote an article about system schedulers in [ECS][ECS].
-It contains an overview of the scheduling problem itself, covers
-the constraints a solution to it should consider, and dissects
-schedulers of [Bevy] engine and [`yaks`] as examples.
+[@Ratys] wrote an article about system schedulers in [ECS][ECS]. It contains
+an overview of the scheduling problem itself, covers the constraints a solution
+to it should consider, and dissects schedulers of [Bevy] engine and [`yaks`] as
+examples.
 
 [article]: https://ratysz.github.io/article/scheduling-1/
 [@Ratys]: https://twitter.com/ratysz

From 1a0b87c325edd16203a21c362a9d8ee800d777ca Mon Sep 17 00:00:00 2001
From: Alexander Sepity <alexander.sepity@gmail.com>
Date: Wed, 2 Dec 2020 21:14:30 +0300
Subject: [PATCH 3/3] Links tweak

---
 content/posts/newsletter-016/index.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/content/posts/newsletter-016/index.md b/content/posts/newsletter-016/index.md
index c9910b60e..43dfb673c 100644
--- a/content/posts/newsletter-016/index.md
+++ b/content/posts/newsletter-016/index.md
@@ -65,14 +65,14 @@ If needed, a section can be split into subsections with a "------" delimiter.
 
 ## Learning Material Updates
 
-### [ECS scheduler thoughts, part 1][article]
+### [ECS scheduler thoughts, part 1]
 
-[@Ratys] wrote an article about system schedulers in [ECS][ECS]. It contains
+[@Ratys] wrote an article about system schedulers in [ECS]. It contains
 an overview of the scheduling problem itself, covers the constraints a solution
 to it should consider, and dissects schedulers of [Bevy] engine and [`yaks`] as
 examples.
 
-[article]: https://ratysz.github.io/article/scheduling-1/
+[ECS scheduler thoughts, part 1]: https://ratysz.github.io/article/scheduling-1/
 [@Ratys]: https://twitter.com/ratysz
 [ECS]: https://en.wikipedia.org/wiki/Entity_component_system
 [Bevy]: https://bevyengine.org/