From 4e35d0591c7c349478299dae66c183153d8fde90 Mon Sep 17 00:00:00 2001 From: Henry Date: Thu, 24 May 2018 19:23:20 -0700 Subject: [PATCH] quick grammar fix (#2163) --- docs/simple-application.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/simple-application.md b/docs/simple-application.md index 9ca3a698..baa46d12 100644 --- a/docs/simple-application.md +++ b/docs/simple-application.md @@ -240,7 +240,7 @@ Now we can style the `UserList` component: The CSS above is written using a convention of keeping all styles for a rule in a single line, in alphabetical order. This convention is designed to take maximum advantage of screen real estate, and makes it easier to scan the CSS selectors (since they are always on the left side) and their logical grouping, and it enforces predictable and uniform placement of CSS rules for each selector. -Obviously you can use whatever spacing/indentation convention you prefer. The example above is just an illustration of a not-so-widespread convention that has strong rationales behind it, but deviate from the more widespread cosmetic-oriented spacing conventions. +Obviously you can use whatever spacing/indentation convention you prefer. The example above is just an illustration of a not-so-widespread convention that has strong rationales behind it, but deviates from the more widespread cosmetic-oriented spacing conventions. Reloading the browser window now should display some styled elements.