From 8fe4fe79218e3f57cd23a323cd913cb353335b37 Mon Sep 17 00:00:00 2001 From: Balaji Pachai <32358081+balajipachai@users.noreply.github.com> Date: Tue, 10 Sep 2019 15:35:52 +0530 Subject: [PATCH] Fixed a typo Replaced is with in to make the statement grammatically correct. --- docs/style-guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/style-guide.rst b/docs/style-guide.rst index 0493b4ffa..242220290 100644 --- a/docs/style-guide.rst +++ b/docs/style-guide.rst @@ -953,7 +953,7 @@ naming styles. * ``mixedCase`` (differs from CapitalizedWords by initial lowercase character!) * ``Capitalized_Words_With_Underscores`` -.. note:: When using initialisms in CapWords, capitalize all the letters of the initialisms. Thus HTTPServerError is better than HttpServerError. When using initialisms is mixedCase, capitalize all the letters of the initialisms, except keep the first one lower case if it is the beginning of the name. Thus xmlHTTPRequest is better than XMLHTTPRequest. +.. note:: When using initialisms in CapWords, capitalize all the letters of the initialisms. Thus HTTPServerError is better than HttpServerError. When using initialisms in mixedCase, capitalize all the letters of the initialisms, except keep the first one lower case if it is the beginning of the name. Thus xmlHTTPRequest is better than XMLHTTPRequest. Names to Avoid