Update JavaScript Coding Conventions

fix some typos
This commit is contained in:
Konstantin
2015-01-14 14:26:01 +03:00
parent ab531b5bc3
commit 99dcda4e54
+2 -2
View File
@@ -1,7 +1,7 @@
# JavaScript Coding Conventions # JavaScript Coding Conventions
| Object Name | Notation | Length | Plural | Prefix | Suffix | Abbreviation | Char Mask |Underscores | | 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 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 | | 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 | | Local variables | CamelCase | 50 | Yes | No | No | Yes | [A-z][0-9] | No |