Skip to content

Commit

Permalink
Display information hidden by syntax error (#288)
Browse files Browse the repository at this point in the history
* Display information hidden by syntax error

Words using <> are hidden because markdown interprets them as html.
Surrounded these words with back-ticks instead for syntax highlighting.

* Surround another syntax error with back-tick

Overlooked in the previous commit
  • Loading branch information
Sriess authored and Mark Hall committed Jan 9, 2020
1 parent 926ea7f commit 486d705
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/CONTRIBUTING.md
Expand Up @@ -55,13 +55,13 @@ Acts as integration branch for feature and bugfix branches that should go into t

### Feature branches

Created from develop and should be named feature/<issue id in github>-<short description>. For example to work on "User Story 35: Remove the 'Classic' link stage in the API and only use permanent links" you would create a branch from develop named "feature/35-remove-classic-links". Note that the <short description> is all lower-case with hyphens.
Created from develop and should be named feature/`<issue id in github>-<short description>`. For example to work on "User Story 35: Remove the 'Classic' link stage in the API and only use permanent links" you would create a branch from develop named "feature/35-remove-classic-links". Note that the `<short description>` is all lower-case with hyphens.

Merge to the develop branch by creating a pull request.

### Bugfix branches

Created from develop and should be named bugfix/<issue id in github>-<short description>. For example to work on "Bug 111571: MVC rendering of built-in properties" you should create a branch named something like "bugfix/111571-mvc-rendering-properties". Note that the <short description> is all lower-case with hyphens.
Created from develop and should be named bugfix/`<issue id in github>-<short description>`. For example to work on "Bug 111571: MVC rendering of built-in properties" you should create a branch named something like "bugfix/111571-mvc-rendering-properties". Note that the `<short description>` is all lower-case with hyphens.

Merge to the develop branch by creating a pull request.

Expand Down

0 comments on commit 486d705

Please sign in to comment.