Skip to content

Commit

Permalink
Rename manual-page.md to manual.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jcamiel committed Sep 2, 2022
1 parent 948f1e2 commit 1892c35
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ GET https://example.org/protected
bob: secret
```

[Doc](https://hurl.dev/docs/request.html#basic-authentification)
[Doc](https://hurl.dev/docs/request.html#basic-authentication)

This is equivalent to construct the request with a [Authorization] header:

Expand All @@ -292,8 +292,8 @@ GET https://example.org/protected
Authorization: Basic Ym9iOnNlY3JldA==
```

Basic authentification allows per request authentification.
If you want to add basic authentification to all the request of a Hurl file
Basic authentication allows per request authentication.
If you want to add basic authentication to all the request of a Hurl file
you could use [`-u/--user` option].

## Sending Data
Expand Down
4 changes: 2 additions & 2 deletions docs/request.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ alice: secret
<br>
</div>
<div class="hurl-request-explanation-part-2">
<a href="#query-parameters">Query strings</a>, <a href="#form-parameters">form params</a>, <a href="#cookies">cookies</a>, <a href="#basic-authentification">authentification</a> ...<br>(optional sections, unordered)
<a href="#query-parameters">Query strings</a>, <a href="#form-parameters">form params</a>, <a href="#cookies">cookies</a>, <a href="#basic-authentication">authentication</a> ...<br>(optional sections, unordered)
</div>
<div class="hurl-request-explanation-part-2">
<br>
Expand Down Expand Up @@ -315,7 +315,7 @@ Username is followed by a `:` and a password. The basic authentication section s


```hurl
# Perform basic authentification with login `bob` and password `secret`.
# Perform basic authentication with login `bob` and password `secret`.
GET https://example.org/protected
[BasicAuth]
bob: secret
Expand Down
6 changes: 3 additions & 3 deletions docs/samples.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ GET https://example.org/protected
bob: secret
```

[Doc](/docs/request.md#basic-authentification)
[Doc](/docs/request.md#basic-authentication)

This is equivalent to construct the request with a [Authorization] header:

Expand All @@ -81,8 +81,8 @@ GET https://example.org/protected
Authorization: Basic Ym9iOnNlY3JldA==
```

Basic authentification allows per request authentification.
If you want to add basic authentification to all the request of a Hurl file
Basic authentication allows per request authentication.
If you want to add basic authentication to all the request of a Hurl file
you could use [`-u/--user` option].

## Sending Data
Expand Down
6 changes: 3 additions & 3 deletions packages/hurl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ GET https://example.org/protected
bob: secret
```

[Doc](https://hurl.dev/docs/request.html#basic-authentification)
[Doc](https://hurl.dev/docs/request.html#basic-authentication)

This is equivalent to construct the request with a [Authorization] header:

Expand All @@ -292,8 +292,8 @@ GET https://example.org/protected
Authorization: Basic Ym9iOnNlY3JldA==
```

Basic authentification allows per request authentification.
If you want to add basic authentification to all the request of a Hurl file
Basic authentication allows per request authentication.
If you want to add basic authentication to all the request of a Hurl file
you could use [`-u/--user` option].

## Sending Data
Expand Down

0 comments on commit 1892c35

Please sign in to comment.