From 19b129c28ec9f651b2f11bfbd4687a2e033a50b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Sat, 16 Nov 2019 21:56:40 +0200 Subject: [PATCH] Fix several frontmatter issues --- circuit-breaker/README.md | 2 +- collection-pipeline/README.md | 2 +- commander/README.md | 2 +- double-buffer/README.md | 1 - game-loop/README.md | 1 - master-worker-pattern/README.md | 2 +- sharding/README.md | 7 +++---- spatial-partition/README.md | 2 +- subclass-sandbox/README.md | 3 +-- trampoline/README.md | 2 +- 10 files changed, 10 insertions(+), 14 deletions(-) diff --git a/circuit-breaker/README.md b/circuit-breaker/README.md index db75ca58c..6a1c631c7 100644 --- a/circuit-breaker/README.md +++ b/circuit-breaker/README.md @@ -1,6 +1,6 @@ --- layout: pattern -title: CircuitBreaker +title: Circuit Breaker folder: circuit-breaker permalink: /patterns/circuit-breaker/ categories: Other diff --git a/collection-pipeline/README.md b/collection-pipeline/README.md index ab13b21db..9d2f2693b 100644 --- a/collection-pipeline/README.md +++ b/collection-pipeline/README.md @@ -3,7 +3,7 @@ layout: pattern title: Collection Pipeline folder: collection-pipeline permalink: /patterns/collection-pipeline/ -categories: Functional +categories: Other tags: - Java - Difficulty-Beginner diff --git a/commander/README.md b/commander/README.md index 41e2cd587..71ef7fe9c 100644 --- a/commander/README.md +++ b/commander/README.md @@ -3,7 +3,7 @@ layout: pattern title: Commander folder: commander permalink: /patterns/commander/ -categories: +categories: Other tags: - Java - Difficulty-Intermediate diff --git a/double-buffer/README.md b/double-buffer/README.md index 8e8e7acf6..9cd5ebfa8 100644 --- a/double-buffer/README.md +++ b/double-buffer/README.md @@ -1,4 +1,3 @@ - --- layout: pattern title: Double Buffer diff --git a/game-loop/README.md b/game-loop/README.md index 424343271..5df86e045 100644 --- a/game-loop/README.md +++ b/game-loop/README.md @@ -1,4 +1,3 @@ - --- layout: pattern title: Game Loop diff --git a/master-worker-pattern/README.md b/master-worker-pattern/README.md index 4d2aa0e38..f8b550936 100644 --- a/master-worker-pattern/README.md +++ b/master-worker-pattern/README.md @@ -3,7 +3,7 @@ layout: pattern title: Master-Worker folder: master-worker-pattern permalink: /patterns/master-worker-pattern/ -categories: Centralised Parallel Processing +categories: Other tags: - Java - Difficulty-Intermediate diff --git a/sharding/README.md b/sharding/README.md index b40f08cfc..3184e405e 100644 --- a/sharding/README.md +++ b/sharding/README.md @@ -1,10 +1,9 @@ - ---- +--- layout: pattern title: Sharding -folder: sharding +folder: sharding permalink: /patterns/sharding/ -categories: Other +categories: Other tags: - Java - Difficulty-Beginner diff --git a/spatial-partition/README.md b/spatial-partition/README.md index e4270e50b..6e55f9544 100644 --- a/spatial-partition/README.md +++ b/spatial-partition/README.md @@ -3,7 +3,7 @@ layout: pattern title: Spatial Partition folder: spatial-partition permalink: /patterns/spatial-partition/ -categories: Game Programming pattern/Optimisation pattern +categories: Other tags: - Java - Difficulty-Intermediate diff --git a/subclass-sandbox/README.md b/subclass-sandbox/README.md index 674991f08..b4c8952b0 100644 --- a/subclass-sandbox/README.md +++ b/subclass-sandbox/README.md @@ -1,4 +1,3 @@ - --- layout: pattern title: Subclass Sandbox @@ -9,7 +8,7 @@ tags: - Java - Difficulty-Beginner --- - + ## Intent The subclass sandbox pattern describes a basic idea, while not having a lot of detailed mechanics. You will need the pattern when you have several similar subclasses. If you have to make a tiny change, then change the base class, while all subclasses shouldn't have to be touched. So the base class has to be able to provide all of the operations a derived class needs to perform. diff --git a/trampoline/README.md b/trampoline/README.md index cae343a61..dc0bb270c 100644 --- a/trampoline/README.md +++ b/trampoline/README.md @@ -3,7 +3,7 @@ layout: pattern title: Trampoline folder: trampoline permalink: /patterns/trampoline/ -categories: Behavior +categories: Behavioral tags: - Java - Difficulty-Intermediate