From e0027b103e38836ebf0e56f93858acc589e8152a Mon Sep 17 00:00:00 2001 From: Jeremy Ray Jewell <140910682+jeremyrayjewell@users.noreply.github.com> Date: Tue, 16 Jan 2024 06:22:20 -0300 Subject: [PATCH] fix(docs): Grammatical errors - missing punctuation, missing preposition, unclear wording (#53183) --- docs/codebase-best-practices.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/codebase-best-practices.md b/docs/codebase-best-practices.md index 9186622807e..5bd0343bef4 100644 --- a/docs/codebase-best-practices.md +++ b/docs/codebase-best-practices.md @@ -12,7 +12,7 @@ The `!important` keyword may be used to override values in some cases (e.g. acce ### RTL support -We are striving to support right-to-left (RTL) layout in the codebase for languages that are read in this direction. For this you need be mindful of how to style components. Here are some quick rules of thumb to follow: +We are striving to support right-to-left (RTL) layout in the codebase for languages that are read in this direction. For this, you need to be mindful of how to style components. Here are some quick rules of thumb to follow: - Don't use `float` properties - Use Flexbox and Grid layouts instead, as they have RTL support already built-in, and those will be easier to maintain and review. @@ -173,7 +173,7 @@ api/ #### Integration Tests -Integration tests test the API as a whole. The tests will require mocking, and should not require fixtures beyond the database seeding data, and a method to authenticate. +Integration tests test the API as a whole. The tests will require mocking and should not require fixtures beyond the database seeding data and a method for authentication. Typically, each integration test file will be directly related to a route. The integration tests are located in the `api/tests/` directory: