Skip to content

Commit ea9da54

Browse files
committed
fix: change html to md
1 parent a0579ff commit ea9da54

4 files changed

+8
-8
lines changed

docs/site/Booting-an-Application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ a part of the `@loopback/boot` package and loaded automatically via `BootMixin`.
185185

186186
### Controller Booter
187187

188-
This Booter's purpose is to discover [Controller](Controllers.html) type Artifacts and to bind
188+
This Booter's purpose is to discover [Controller](Controllers.md) type Artifacts and to bind
189189
them to the Application's Context.
190190

191191
You can configure the conventions used in your
@@ -201,7 +201,7 @@ of your Application. The `controllers` object supports the following options:
201201

202202
### Repository Booter
203203

204-
This Booter's purpose is to discover [Repository](Repository.html) type Artifacts and to bind
204+
This Booter's purpose is to discover [Repository](Repositories.md) type Artifacts and to bind
205205
them to the Application's Context. The use of this Booter requires `RepositoryMixin`
206206
from `@loopback/repository` to be mixed into your Application class.
207207

docs/site/Implementing-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ summary:
99
---
1010

1111
{% include previous.html content="
12-
This article continues off from [Defining your testing stategy(./Defining-your-testing-strategy.md).
12+
This article continues from [Defining your testing stategy(./Defining-your-testing-strategy.md).
1313
" %}
1414

1515
## Incrementally implement features

docs/site/Preparing-the-API-for-consumption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ summary:
99
---
1010

1111
{% include previous.html content="
12-
This article continues off from [Implementing features](./Implementing-features.md).
12+
This article continues from [Implementing features](./Implementing-features.md).
1313
" %}
1414

1515
## Preparing your API for consumption

docs/site/Testing-your-application.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ or [`given/when/then`](https://martinfowler.com/bliki/GivenWhenThen.html).
2828
Both styles work well, so pick one that you're comfortable with and
2929
start writing tests!
3030

31-
For an introduction to automated testing, see [Define your testing strategy](Defining-your-testing-strategy.html).
32-
For a step-by-step tutorial, see [Incrementally implement features](Implementing-features.html).
31+
For an introduction to automated testing, see [Define your testing strategy](Defining-your-testing-strategy.md).
32+
For a step-by-step tutorial, see [Incrementally implement features](Implementing-features.md).
3333

3434
{% include important.html content="
3535
A great test suite requires you to think smaller and favor fast and focused
@@ -318,9 +318,9 @@ produces code that's difficult to comprehend.
318318
#### Create a stub Repository
319319

320320
When writing an application that accesses data in a database, the best
321-
practice is to use [repositories](Repositories.html) to encapsulate all
321+
practice is to use [repositories](Repositories.md) to encapsulate all
322322
data-access/persistence-related code. Other parts of the application
323-
(typically [controllers](Controllers.html)) can then depend on these
323+
(typically [controllers](Controllers.md)) can then depend on these
324324
repositories for data access. To test Repository dependents
325325
(for example, Controllers) in isolation, we need to provide a test double,
326326
usually as a test stub.

0 commit comments

Comments
 (0)