Skip to content

Commit 44d5d6b

Browse files
committed
[infra] update readme badges
1 parent 466274a commit 44d5d6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
A gloriously functional HTTP client library for F#! NuGet name:
55
`Http.fs`.
66

7-
.Net build (AppVeyor): [![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/vcqrxl5d03xxyoa3/branch/master)](https://ci.appveyor.com/project/GrantCrofton/http-fs/branch/master)
8-
Mono build (Travis CI): [![Travis Build status](https://travis-ci.org/relentless/Http.fs.svg?branch=master)](https://travis-ci.org/relentless/Http.fs)
7+
.Net build (AppVeyor): [![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/s3xy4lk0novh549h?svg=true)](https://ci.appveyor.com/project/haf/http-fs)
8+
Mono build (Travis CI): [![Travis Build status](https://travis-ci.org/haf/Http.fs.svg?branch=releases%2Fv4.x)](https://travis-ci.org/haf/Http.fs)
99
NuGet package: [![NuGet](http://img.shields.io/nuget/v/Http.fs.svg?style=flat)](http://www.nuget.org/packages/Http.fs/)
1010

1111
## How do I use it? ##
@@ -42,7 +42,7 @@ let request =
4242
|> Request.withBasicAuthentication "myUsername" "myPassword" // UTF8-encoded
4343
|> Request.withHeader (UserAgent "Chrome or summat")
4444
|> Request.withHeader (Custom ("X-My-Header", "hi mum"))
45-
|> Request.withAutoDecompression DecompressionScheme.GZip
45+
|> Request.withAutoDecompression DecompressionScheme.GZip
4646
|> Request.withAutoFollowRedirectsDisabled
4747
|> Request.withCookie (Cookie.Create("session", "123", path="/"))
4848
|> Request.withBodyString "This body will make heads turn"
@@ -76,7 +76,7 @@ let request =
7676
```
7777

7878
(with everything after createRequest being optional)
79-
79+
8080
2 - The Http response (or just the response code/body) is retrieved using one of the following:
8181

8282
``` fsharp

0 commit comments

Comments
 (0)