From 99dcda4e542236fe69bc6308ce3236e4a9ae4d48 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Wed, 14 Jan 2015 14:26:01 +0300 Subject: [PATCH] Update JavaScript Coding Conventions fix some typos --- JavaScript Coding Conventions | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/JavaScript Coding Conventions b/JavaScript Coding Conventions index 2247a6a..22e3d3c 100644 --- a/JavaScript Coding Conventions +++ b/JavaScript Coding Conventions @@ -1,12 +1,12 @@ # JavaScript Coding Conventions -| Object Name | Notation | Length | Plural | Prefix | Suffix | Abbreviation | Char Mask |Underscores | -| ------------------------- | ---------- | ------ | ------ | ------ | ------ | ------------ | -------------------|-------------| -| Function name | PascalCase | 50 | Yes | No | Yes | Yes | [A-z][0-9] | No | -| Function arguments | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | -| Local variables | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | -| Constants name | PascalCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | -| Field name | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | +| Object Name | Notation | Length | Plural | Prefix | Suffix | Abbreviation | Char Mask | Underscores | +|--------------------|------------|--------|--------|--------|--------|--------------|------------|-------------| +| Function name | PascalCase | 50 | Yes | No | Yes | Yes | [A-z][0-9] | No | +| Function arguments | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | +| Local variables | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | +| Constants name | PascalCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | +| Field name | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No | *** Coding conventions are style guidelines for programming. They typically cover: