Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Oct 19, 2023
1 parent 733c4e2 commit db59954
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ properties:
- link: consumption/query-incoming-requests
require:
required_by:
api_route_regex: ^get /api/v2/Requests/Incomming$
api_route_regex: ^get /api/v2/Requests/incoming$
---

{% include use-cases/use-case-consumption-query-incoming-requests.md %}
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

{% include properties_list.html %}

This use-case attempts to accept an incomming [Request](/integrate/data-model-overview#request).
This use-case attempts to accept an incoming [Request](/integrate/data-model-overview#request).
It is advised to [check if incoming request can be accepted](/use-case-consumption-check-if-incoming-request-can-be-accepted)
in advance.

## Parameters

- The `id` of the incomming request.
- The `id` of the incoming request.
- The decision for each individual [RequestItem](/integrate/data-model-overview#request)
expressed as the appropriate [Parameters defined in the Data Model](/integrate/requests-and-requestitems).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

{% include properties_list.html %}

This use-case tests if an incomming [Request](/integrate/data-model-overview#request)
This use-case tests if an incoming [Request](/integrate/data-model-overview#request)
can be accepted with the given parameters without actually accepting it.

## Parameters

- The `id` of the incomming request.
- The `id` of the incoming request.
- The decision for each individual [RequestItem](/integrate/data-model-overview#request)
expressed as the appropriate [Parameters defined in the Data Model](/integrate/requests-and-requestitems).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

{% include properties_list.html %}

This use-case tests if an incomming [Request](/integrate/data-model-overview#request)
This use-case tests if an incoming [Request](/integrate/data-model-overview#request)
can be rejected with the given parameters without actually rejecting it.

## Parameters

- The `id` of the incomming request.
- The `id` of the incoming request.
- The decision for each individual [RequestItem](/integrate/data-model-overview#request)
expressed as the appropriate [Parameters defined in the Data Model](/integrate/requests-and-requestitems).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

{% include properties_list.html %}

This use-case is intended to retrieve an [incomming request](/integrate/data-model-overview#request)
by it's id. The differences of an outgoing and an incomming request are defined [here](/integrate/data-model-overview#localrequeststatus).
This use-case is intended to retrieve an [incoming request](/integrate/data-model-overview#request)
by it's id. The differences of an outgoing and an incoming request are defined [here](/integrate/data-model-overview#localrequeststatus).

## Parameters

- The `id` of the incomming request.
- The `id` of the incoming request.

## On Success

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% include properties_list.html %}

This use-case is intended to retrieve an [outgoing request](/integrate/data-model-overview#request)
by it's id. The differences of an outgoing and an incomming request are defined [here](/integrate/data-model-overview#localrequeststatus).
by it's id. The differences of an outgoing and an incoming request are defined [here](/integrate/data-model-overview#localrequeststatus).

## Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{% include properties_list.html %}

This use-case is intended to query all incomming [requests](/integrate/data-model-overview#request).
This use-case is intended to query all incoming [requests](/integrate/data-model-overview#request).

## Parameters

Expand All @@ -15,7 +15,7 @@ This use-case is intended to query all incomming [requests](/integrate/data-mode

## On Success

- A list of incomming [LocalRequests](/integrate/data-model-overview#localrequest) that match the query.
- A list of incoming [LocalRequests](/integrate/data-model-overview#localrequest) that match the query.

## On Failure

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

{% include properties_list.html %}

This use-case attempts to reject an incomming [Request](/integrate/data-model-overview#request).
This use-case attempts to reject an incoming [Request](/integrate/data-model-overview#request).
It is advised to [check if incoming request can be accepted](/use-case-consumption-check-if-incoming-request-can-be-rejected)
in advance.

## Parameters

- The `id` of the incomming request.
- The `id` of the incoming request.
- The decision for each individual [RequestItem](/integrate/data-model-overview#request)
expressed as the appropriate [Parameters defined in the Data Model](/integrate/requests-and-requestitems).

Expand Down

0 comments on commit db59954

Please sign in to comment.