From 2a5baf4b698e0d94a8ac19d26893ba003d9f40d6 Mon Sep 17 00:00:00 2001 From: Julien Verneaut Date: Thu, 20 May 2021 14:01:11 +0200 Subject: [PATCH] Correct a typo --- docs/styleguide/styleguide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/styleguide/styleguide.md b/docs/styleguide/styleguide.md index 7d373b0ad..1ed2022c7 100644 --- a/docs/styleguide/styleguide.md +++ b/docs/styleguide/styleguide.md @@ -50,7 +50,7 @@ class foo { } ```ts class Foo { } ``` -* Use `camelCase` of class members and methods +* Use `camelCase` for class members and methods > Reason: Naturally follows from variable and function naming convention.