Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo fix in developer/small-cls.md #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions review/developer/small-cls.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down