Skip to content

Commit 6c3880c

Browse files
authored
Fix markdown syntax
1 parent 30f25dd commit 6c3880c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#CurlWrapper for PHP
1+
# CurlWrapper for PHP
22
[![Total Downloads](https://img.shields.io/packagist/dt/phpcurl/curlwrapper.svg)](https://packagist.org/packages/phpcurl/curlwrapper)
33
[![Latest Stable Version](https://img.shields.io/packagist/v/phpcurl/curlwrapper.svg)](https://packagist.org/packages/phpcurl/curlwrapper)
44
[![Travis Build](https://travis-ci.org/phpcurl/curlwrapper.svg?branch=master)](https://travis-ci.org/phpcurl/curlwrapper)
@@ -41,14 +41,14 @@ class MyApiClient {
4141
}
4242
```
4343

44-
##Install
44+
## Install
4545
Via [composer](https://getcomposer.org):
4646
`$ composer require "phpcurl/curlwrapper"`
4747

4848

49-
##Basic usage examples. Classic vs OOP style
49+
## Basic usage examples. Classic vs OOP style
5050

51-
###Curl
51+
### Curl
5252

5353
| Classic | OOP |
5454
| --- | --- |
@@ -67,7 +67,7 @@ Via [composer](https://getcomposer.org):
6767
| `$res = curl_escape($h, $str);` | `$res = $curl->escape($str);` |
6868
| `$res = curl_unescape($h, $str);` | `$res = $curl->unescape($str);` |
6969

70-
###CurlMulti
70+
### CurlMulti
7171

7272
| Classic | OOP |
7373
| --- | --- |
@@ -81,7 +81,7 @@ Via [composer](https://getcomposer.org):
8181
| `$i = curl_multi_select($mh, $timeout);` | `$i = $cm->select($timeout);` |
8282
| `$r = curl_multi_setopt($h, $opt, $val);` | `$r = $cm->setOpt($opt, $val);` |
8383

84-
###CurlShare
84+
### CurlShare
8585

8686
| Classic | OOP |
8787
| --- | --- |

0 commit comments

Comments
 (0)