Skip to content

Commit

Permalink
Merge pull request freeCodeCamp#955 from Rafase282/title-fixes
Browse files Browse the repository at this point in the history
Removes backticks from titles as they break the scripts
  • Loading branch information
Rafase282 committed May 15, 2016
2 parents 9cf8722 + e9e0bba commit 75fe03b
Show file tree
Hide file tree
Showing 20 changed files with 30 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Challenge-Concatenate-Strings-With-Concat.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Challenge Concatenate Strings with `.concat`
# Challenge Concatenate Strings with .concat

`.concat()` can be used to merge the contents of two arrays into one.

Expand Down
2 changes: 1 addition & 1 deletion Fixing-Exports-Update.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Fixing `exports.update`
# Fixing exports.update

As it turns out, in **thing.controller.js** as well as in any other endpoints you may generate, the _exports.update_ function that is called when you make an _$http.put_ call from your frontend to modify an existing database object is broken. This is a [known issue](https://github.com/DaftMonk/generator-angular-fullstack/issues/310), and can be fixed by changing the following line:

Expand Down
2 changes: 1 addition & 1 deletion Gitter-CamperBot-Topic.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Gitter CamperBot `topic` Command
# Gitter CamperBot topic Command

This is an example. You should replace `topic` with the thing you want to find info on. For example:

Expand Down
2 changes: 1 addition & 1 deletion Identify-Basic-Internet-Problems-With-Ping.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Identify Basic Internet Problems with `ping`
# Identify Basic Internet Problems with ping

![Sonar screen](https://i.imgur.com/YqbZcER.png)

Expand Down
2 changes: 1 addition & 1 deletion JS-Reduce-Made-Easy.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Using `Array.prototype.reduce()` to Reduce Conceptual Boilerplate for Problems on Arrays
# Using Array.prototype.reduce() to Reduce Conceptual Boilerplate for Problems on Arrays

That's quite a mouthful! It could have just been titled as **Use [`Array.prototype.reduce()`](JS-Array-Prototype-Reduce) to Solve Array Problems Easily** or **`Array.prototype.reduce()` FTW!**. That would have been so much easier to read and parse.

Expand Down
2 changes: 1 addition & 1 deletion Java-Loops-Control-Statement-Break.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Java `break` Control Statement
# Java break Control Statement

Terminates the loop and starts the execution of the code that immediately follows the loop. If you have nested loops, the `break` statement will only end the loop in which it is placed.

Expand Down
2 changes: 1 addition & 1 deletion Java-Loops-Control-Statement-Continue.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Java `continue` Control Statement
# Java continue Control Statement

The `continue` statement makes a loop skip all the following lines after the continue and jump ahead to the beginning of the next iteration. In a `for` loop, control jumps to the update statement, and in a `while` or `do while` loop, control jumps to the boolean expression/condition.

Expand Down
2 changes: 1 addition & 1 deletion Java-Loops-Do-While.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Java `do..while` Loop
# Java do..while Loop

The `do..while` loop is a special case of the `while` loop wherein the group of statements is guranteed to run atleast once before checking for a given condition. Confused? Ok, the follwing example should clear things up.

Expand Down
2 changes: 1 addition & 1 deletion Java-Loops-For.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Java `for` Loop
# Java for Loop

There are 2 of these:

Expand Down
2 changes: 1 addition & 1 deletion Java-Loops-While.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Java `while` Loop
# Java while Loop

The `while` loop executes a group of statements / single statement till a condition evaluates to `true`. For instance:

Expand Down
2 changes: 1 addition & 1 deletion Java-Operator-Instanceof.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The Java `instanceof` operator
# The Java instanceof operator

The `instanceof` operator allows you to check the validity of a `IS A` relationship. If at any point of time, we are not sure about this and we want to validate this at runtime, we can do the following:

Expand Down
2 changes: 1 addition & 1 deletion Python-Function-ABS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Python `abs(x)`
# Python abs(x)

`abs()` is a built-in function in Python 3, to compute the absolute value of any number. It takes one argument `x`. The argument can even be a [complex number](https://docs.python.org/3.0/library/cmath.html), and in that case its [modulus](http://www.mathcentre.ac.uk/resources/sigma%20complex%20number%20leaflets/sigma-complex9-2009-1.pdf) is returned.

Expand Down
2 changes: 1 addition & 1 deletion Python-Function-All.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Python `all(iterable)`
# Python all(iterable)

`all()` is a built-in function in Python 3, to check if all items of an [_iterable_](https://docs.python.org/3/glossary.html#term-iterable) is `True`. It takes one argument, `iterable`.

Expand Down
2 changes: 1 addition & 1 deletion Python-Function-Any.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Python `any(iterable)`
# Python any(iterable)

`any()` is a built-in function in Python 3, to check if any of the items of an [_iterable_](https://docs.python.org/3/glossary.html#term-iterable) is `True`. It takes one argument, `iterable`.

Expand Down
2 changes: 1 addition & 1 deletion Python-Functions-Statements-Global.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The `global` Statement
# The global Statement

[Python Docs - the Global Statement](https://docs.python.org/3/reference/simple_stmts.html#the-global-statement)

Expand Down
2 changes: 1 addition & 1 deletion Python-Functions-Statements-Nonlocal.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The `nonlocal` Statements
# The nonlocal Statements

[Python Docs - the nonlocal Statement](https://docs.python.org/3/reference/simple_stmts.html#the-nonlocal-statement)

Expand Down
2 changes: 1 addition & 1 deletion Python-Functions-Statements-Return.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Python `return` Statement
# Python return Statement

[Python Docs](https://docs.python.org/3/reference/simple_stmts.html#the-return-statement)

Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ Our open source community's Wiki focuses on answering your questions about learn
## Steps to follow

### 1. **Fork it** :fork_and_knife:

You can get your own fork/copy of [FreeCodeCamp wiki](https://github.com/FreeCodeCamp/wiki) by using the <a href="https://github.com/FreeCodeCamp/wiki/new/master?readme=1#fork-destination-box"><kbd><b>Fork</b></kbd></a> button or clicking [this](https://github.com/FreeCodeCamp/wiki/new/master?readme=1#fork-destination-box).

[![Fork Button](https://help.github.com/assets/images/help/repository/fork_button.jpg)](https://github.com/FreeCodeCamp/wiki)

### 2. **Clone it** :busts_in_silhouette:

Once you have forked the wiki repository in Github, you need to clone/download it to local machine with...

```sh
Expand All @@ -26,6 +28,7 @@ $ git clone https://github.com/YOUR_USERNAME/wiki.git
> *this makes a local copy in your machine.*
### 3. **Set it up** :up:

Run the following commands to see that _your local copy_ has a reference to _your forked remote repository_ in Github :octocat:

```sh
Expand Down Expand Up @@ -54,6 +57,7 @@ upstream https://github.com/FreeCodeCamp/wiki.git (push)
```

### 4. **Sync it** :recycle:

Always keep your local copy of repository updated with the original repository.
Before making any changes and/or in an appropriate interval, run the following commands _carefully_ to update your local repository.

Expand All @@ -72,9 +76,11 @@ $ git push origin master
```

### 5. Ready Steady Go... :turtle: :rabbit2:

Once you have completed these steps, you are ready to start contributing by checking our [![Help Wanted Issues](https://img.shields.io/badge/Wiki-Help_Wanted_Issues-159818.svg?style=flat-square&maxAge=2592000)](https://github.com/FreeCodeCamp/wiki/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22 "Help Wanted Issues") and creating *new shiny* :sparkles: [pull requests](https://github.com/FreeCodeCamp/wiki/pulls).

## Help Contributing Guides

We also have guides in our Wiki to assist you in your contributions. You can find this and many more guides, tutorials and other information in the [Wiki Central](https://github.com/FreeCodeCamp/FreeCodeCamp/wiki/Wiki) Page such as contributing using:

- **Browser** :earth_americas:
Expand Down
2 changes: 1 addition & 1 deletion Translation-Create-Issues.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Create `Translation` issues to track the progress.
# Create Translation issues to track the progress.

Before starting translations of challenges GitHub issues need to be created specific to the language of translation. Translators should create issues with the details of the challenges to be tracked in that particular issue.

Expand Down
6 changes: 6 additions & 0 deletions Wiki-Contribute-Fork.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ These steps are standard for contributing not only to our wiki but any other pro
## Steps to follow

### 1. **Fork it** :fork_and_knife:

You can get your own fork/copy of [FreeCodeCamp wiki](https://github.com/FreeCodeCamp/wiki) by using the <a href="https://github.com/FreeCodeCamp/wiki/new/master?readme=1#fork-destination-box"><kbd><b>Fork</b></kbd></a> button or clicking [this](https://github.com/FreeCodeCamp/wiki/new/master?readme=1#fork-destination-box).

[![Fork Button](https://help.github.com/assets/images/help/repository/fork_button.jpg)](https://github.com/FreeCodeCamp/wiki)

### 2. **Clone it** :busts_in_silhouette:

Once you have forked the wiki repository in Github, you need to clone/download it to local machine with...

```sh
Expand All @@ -19,6 +21,7 @@ $ git clone https://github.com/YOUR_USERNAME/wiki.git
> *this makes a local copy in your machine.*
### 3. **Set it up** :up:

Run the following commands to see that _your local copy_ has a reference to _your forked remote repository_ in Github :octocat:

```sh
Expand Down Expand Up @@ -47,6 +50,7 @@ upstream https://github.com/FreeCodeCamp/wiki.git (push)
```

### 4. **Sync it** :recycle:

Always keep your local copy of repository updated with the original repository.
Before making any changes and/or in an appropriate interval, run the following commands _carefully_ to update your local repository.

Expand All @@ -65,9 +69,11 @@ $ git push origin master
```

### 5. Ready Steady Go... :turtle: :rabbit2:

Once you have completed these steps, you are ready to start contributing by checking our [![Help Wanted Issues](https://img.shields.io/badge/Wiki-Help_Wanted_Issues-159818.svg?style=flat-square&maxAge=2592000)](https://github.com/FreeCodeCamp/wiki/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22 "Help Wanted Issues") and creating *new shiny* :sparkles: [pull requests](https://github.com/FreeCodeCamp/wiki/pulls).

## Help Contributing Guides

We also have guides in our Wiki to assist you in your contributions. You can find this and many more guides, tutorials and other information in the [Wiki Central](https://github.com/FreeCodeCamp/FreeCodeCamp/wiki/Wiki) Page such as contributing using:

- **Browser** :earth_americas:
Expand Down

0 comments on commit 75fe03b

Please sign in to comment.