Skip to content

Commit

Permalink
fix: change html to md
Browse files Browse the repository at this point in the history
  • Loading branch information
shimks committed Mar 15, 2018
1 parent a0579ff commit bc33a32
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/site/Booting-an-Application.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ a part of the `@loopback/boot` package and loaded automatically via `BootMixin`.

### Controller Booter

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

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

### Repository Booter

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

Expand Down
2 changes: 1 addition & 1 deletion docs/site/Implementing-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ summary:
---

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

## Incrementally implement features
Expand Down
8 changes: 4 additions & 4 deletions docs/site/Testing-your-application.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ or [`given/when/then`](https://martinfowler.com/bliki/GivenWhenThen.html).
Both styles work well, so pick one that you're comfortable with and
start writing tests!

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

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

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

0 comments on commit bc33a32

Please sign in to comment.