diff options
author | Atty Eleti <athyuttamre@gmail.com> | 2019-05-16 07:37:47 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-16 10:37:47 -0400 |
commit | 6679c4807c1c77893f1d7e78eb0ce3417d3dc6a3 (patch) | |
tree | 0640034ba0d6ef2b0c631affc866afafff9e438a | |
parent | 6a5893a26927e3c0329a510f870d2277387aaf30 (diff) |
Fix typo in style guide (#2364)
-rw-r--r-- | website/style_guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/style_guide.md b/website/style_guide.md index 8fd3196bc..09faf04aa 100644 --- a/website/style_guide.md +++ b/website/style_guide.md @@ -36,7 +36,7 @@ not to introduce circular imports. Example: Instead of `file-server.ts` use `file_server.ts`. -## Format code according using prettier. +## Format code using prettier. More specifically, code should be wrapped at 80 columns and use 2-space indentation and use camel-case. Use `//format.ts` to invoke prettier. |