Skip to content

Commit

Permalink
Fix typo in getting started documentation (#869)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrambaud authored and delvedor committed Apr 1, 2018
1 parent 8491872 commit b010287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Getting-Started.md
Expand Up @@ -102,7 +102,7 @@ module.exports = routes
```
In this example we used the `register` API. This API is the core of the Fastify framework, and is the only way to register routes, plugins and so on.

At the beginning of this guide we noted that Fastify provides a foundation that assists with the asynchronous bootstrapping of your an application. Why this is important?
At the beginning of this guide we noted that Fastify provides a foundation that assists with the asynchronous bootstrapping of your application. Why this is important?
Consider the scenario where a database connection is needed to handle data storage. Obviously the database connection needs to be available prior to the server accepting connections. How do we address this problem?<br>
A typical solution is to use a complex callback, or promises, system that will mix the framework API with other libraries and the application code.<br>
Fastify handles this internally, with minimum effort!
Expand Down

0 comments on commit b010287

Please sign in to comment.