Skip to content

Commit 455d3cf

Browse files
committed
Merge pull request #24 from njasm/delegate-lookup
Enhancement - ContainerInterface references as links to ContainerInterface.md
2 parents b4fd00b + dd39e8f commit 455d3cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/delegate_lookup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ A container implementing the *delegate lookup* feature:
3636

3737
- MUST implement the [`ContainerInterface`](ContainerInterface.md)
3838
- MUST provide a way to register a delegate container (using a constructor parameter, or a setter,
39-
or any possible way). The delegate container MUST implement the `ContainerInterface`.
39+
or any possible way). The delegate container MUST implement the [`ContainerInterface`](ContainerInterface.md).
4040

4141
When a container is configured to use a delegate container for dependencies:
4242

4343
- Calls to the `get` method should only return an entry if the entry is part of the container.
4444
If the entry is not part of the container, an exception should be thrown
45-
(as requested by the `ContainerInterface`).
45+
(as requested by the [`ContainerInterface`](ContainerInterface.md)).
4646
- Calls to the `has` method should only return `true` if the entry is part of the container.
4747
If the entry is not part of the container, `false` should be returned.
4848
- If the fetched entry has dependencies, **instead** of performing

0 commit comments

Comments
 (0)