From 5fbd7dbb7e2c487440ecf9d473b5b77b3f7a6303 Mon Sep 17 00:00:00 2001 From: LolloTech Date: Mon, 6 Nov 2023 09:02:52 +0100 Subject: [PATCH] Typo fix in developer/small-cls.md Just a very small typo fix in developer/small-cls.md, in the "Splitting Horizontally & Vertically" section. --- review/developer/small-cls.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/review/developer/small-cls.md b/review/developer/small-cls.md index e571ef28..9b33560c 100644 --- a/review/developer/small-cls.md +++ b/review/developer/small-cls.md @@ -160,13 +160,13 @@ To take this a step further, you could combine these approaches and chart out an implementation plan like this, where each cell is its own standalone CL. Starting from the model (at the bottom) and working up to the client: -| Layer | Feature: Multiplication | Feature: Division | -| ------- | ------------------------- | ------------------------------- | -| Client | Add button | Add button | -| API | Add endpoint | Add endpoint | -| Service | Implement transformations | Share transformation logic with | -: : : multiplication : -| Model | Add proto definition | Add proto definition | +| Layer | Feature: Multiplication | Feature: Division | +| ------- | ------------------------- | ---------------------------------------------- | +| Client | Add button | Add button | +| API | Add endpoint | Add endpoint | +| Service | Implement transformations | Share transformation logic with | +| Service | Implement transformations | Share transformation logic with multiplication | +| Model | Add proto definition | Add proto definition | ## Separate Out Refactorings {#refactoring}