Commit c4aa3cc7 authored by David Schnur's avatar David Schnur

Fix version branch name and clarify spaces v.s. tabs.

parent 6cd3cb98
...@@ -21,7 +21,7 @@ love to hear them! Please submit each suggestion as a separate new issue. ...@@ -21,7 +21,7 @@ love to hear them! Please submit each suggestion as a separate new issue.
If you would like to work on an existing issue, please make sure it is not If you would like to work on an existing issue, please make sure it is not
already assigned to someone else. If an issue is assigned to someone, that already assigned to someone else. If an issue is assigned to someone, that
person has already started working on it. So, pick unassigned issues to prevent person has already started working on it. So, pick unassigned issues to prevent
duplicated efforts. duplicated effort.
### Pull Requests ### ### Pull Requests ###
...@@ -32,8 +32,8 @@ To make merging as easy as possible, please keep these rules in mind: ...@@ -32,8 +32,8 @@ To make merging as easy as possible, please keep these rules in mind:
2. Format your code according to the style guidelines below. 2. Format your code according to the style guidelines below.
3. Submit new features or architectural changes to the <version>-work branch 3. Submit new features or architectural changes to the *&lt;version&gt;-work*
for the next major release. Submit bug fixes to the master branch. branch for the next major release. Submit bug fixes to the master branch.
4. Rebase, if necessary, before submitting your pull request, to reduce the 4. Rebase, if necessary, before submitting your pull request, to reduce the
work we need to do to merge it. work we need to do to merge it.
...@@ -45,8 +45,8 @@ with the following updates and exceptions: ...@@ -45,8 +45,8 @@ with the following updates and exceptions:
#### Spacing #### #### Spacing ####
Do not add horizontal space around parameter lists, loop definitions, or Use four-space indents, no tabs. Do not add horizontal space around parameter
array/object indices. For example: lists, loop definitions, or array/object indices. For example:
```js ```js
for ( var i = 0; i < data.length; i++ ) { // This block is wrong! for ( var i = 0; i < data.length; i++ ) { // This block is wrong!
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment