Skip to content

Commit bc84c20

Browse files
bryant1410norberttech
authored andcommitted
Fix broken Markdown headings (#98)
1 parent 85e6c89 commit bc84c20

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
1-
#A quick guide to contribute to the project:
1+
# A quick guide to contribute to the project:
22

3-
##Installing the dev environment
3+
## Installing the dev environment
44

55
1. Fork the repo
66
2. Clone the repo to local
77
3. Install dependencies: `composer update` (this assumes you have 'composer' aliased to whereever your composer.phar lives)
88
4. Run the tests. We only take pull requests with passing tests, and it's great to know that you have a clean slate:
99
`./bin/phpunit`
1010

11-
##Coding Standards
11+
## Coding Standards
1212

1313
Try use similar coding standards to what you see in the project to keep things clear to the contributors. If you're unsure, it's always a safe bet to fall-back to the PSR standards.
1414

1515
[PSR-1: Basic Coding Standard](http://www.php-fig.org/psr/psr-1/)
1616

1717
[PSR-2: Coding Style Guide](http://www.php-fig.org/psr/psr-2/)
1818

19-
##Adding new features
19+
## Adding new features
2020

2121
Pull requests with new features needs to be created against master branch.
2222

2323
If new feature require BC Breake please note that in your PR comment, it will added in next major version.
2424
New features that does not have any BC Breakes are going to be added in next minor version.
2525

26-
##Patches and bugfixes
26+
## Patches and bugfixes
2727

2828
1. Check the oldest version that patch/bug fix can be applied.
2929
2. Create PR against that version
3030

3131
For example if you are fixing pattern expander that was introduced in version 1.1 make sure that PR with fix
3232
is created against version 1.1, not master or 2.0
3333

34-
##The actual contribution
34+
## The actual contribution
3535

3636
1. Make the changes/additions to the code, committing often and making clear what you've done
3737
2. Make sure you write tests for your code, located in the folder structure `tests/Coduo/PHPMatcher/...`

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#PHP Matcher
1+
# PHP Matcher
22

33
***PHP Matcher*** lets You assert like a gangster in Your test cases, where response can be something you cannot predict
44

@@ -15,7 +15,7 @@
1515
[Readme for 2.0 version](https://github.com/coduo/php-matcher/tree/2.0/README.md)
1616

1717

18-
##Installation
18+
## Installation
1919

2020
Require new dev dependency using composer (assuming it's installed globally):
2121

@@ -84,7 +84,7 @@ $matcher->getError(); // returns null or error message
8484
* ``oneOf(...$expanders)`` - example usage ``"@[email protected](contains('foo'), contains('bar'), contains('baz'))"``
8585
* ``matchRegex($regex)`` - example usage ``"@[email protected]('/^lorem.+/')"``
8686

87-
##Example usage
87+
## Example usage
8888

8989
### Scalar matching
9090

0 commit comments

Comments
 (0)