Skip to content

Commit a326611

Browse files
authored
Merge pull request #428 from AMDG2/patch-2
Fix small typo
2 parents 5067f74 + 8dbadbd commit a326611

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

client-generator/vuejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Create a Vue.js application using [vue-cli](https://github.com/vuejs/vue-cli):
55
$ vue init webpack-simple my-app
66
$ cd my-app
77

8-
Install Vue Router, Vuex and babel-plugin-transform-builtin-extend (to allow extending bultin types like Error and Array):
8+
Install Vue Router, Vuex and babel-plugin-transform-builtin-extend (to allow extending built-in types like Error and Array):
99

1010
$ yarn add vue-router vuex babel-plugin-transform-builtin-extend babel-preset-es2015 babel-preset-stage-2
1111

core/content-negotiation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Content Negotiation
22

3-
The API system has builtin [content negotiation](https://en.wikipedia.org/wiki/Content_negotiation) capabilities.
3+
The API system has built-in [content negotiation](https://en.wikipedia.org/wiki/Content_negotiation) capabilities.
44
It leverages the [`willdurand/negotiation`](https://github.com/willdurand/Negotiation) library.
55

66
By default, only the [JSON-LD](https://json-ld.org) format is enabled. However API Platform Core supports many more formats and can be extended.
@@ -25,7 +25,7 @@ XML | `xml` |
2525
HTML (API docs) | `html` | `text/html` | no
2626

2727
If the client requested format is not specified (if it's not supported, it will throw an HTTP bad format error), the response format will be the first format defined in the `formats` configuration key (see below).
28-
An example using the builtin XML support is available in [Behat specs](https://github.com/api-platform/core/blob/master/features/main/content_negotiation.feature).
28+
An example using the built-in XML support is available in [Behat specs](https://github.com/api-platform/core/blob/master/features/main/content_negotiation.feature).
2929

3030
The API Platform content negotiation system is extendable. Support for other formats (such as [JSONAPI](http://jsonapi.org/))
3131
can be added by [creating and registering appropriate encoders and, sometimes, normalizers](https://symfony.com/doc/current/serializer.html#adding-normalizers-and-encoders). Adding support for other

core/nelmio-api-doc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
NelmioApiDoc provides an alternative to [the native Swagger/Open API support](swagger.md) provided by API Platform.
44

5-
As NelmioApiDocBundle 3+ has builtin support for API Platform, this documentation is only relevant for people using
5+
As NelmioApiDocBundle 3+ has built-in support for API Platform, this documentation is only relevant for people using
66
NelmioApiDocBundle between version 2.9 and 3.0.
77

8-
For new projects, prefer using the builtin Swagger support and/or NelmioApiDoc 3.
8+
For new projects, prefer using the built-in Swagger support and/or NelmioApiDoc 3.
99

1010
![Screenshot of API Platform integrated with NelmioApiDocBundle](images/NelmioApiDocBundle.png)
1111

core/performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Performance
22

3-
## Enabling the Builtin HTTP Cache Invalidation System
3+
## Enabling the Built-in HTTP Cache Invalidation System
44

55
Exposing a hypermedia API has [many advantages](http://blog.theamazingrando.com/in-band-vs-out-of-band.html). One of
66
them is the ability to know exactly which resources are included in HTTP responses created by the API. We used this

core/validation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if you want to.
77

88
## Validating Submitted Data
99

10-
Validating submitted data is simple as adding [Symfony's builtin constraints](http://symfony.com/doc/current/reference/constraints.html)
10+
Validating submitted data is simple as adding [Symfony's built-in constraints](http://symfony.com/doc/current/reference/constraints.html)
1111
or [custom constraints](http://symfony.com/doc/current/validation/custom_constraint.html) directly in classes marked with
1212
the `@ApiResource` annotation:
1313

@@ -19,7 +19,7 @@ namespace AppBundle\Entity;
1919

2020
use ApiPlatform\Core\Annotation\ApiResource;
2121
use Doctrine\ORM\Mapping as ORM;
22-
use Symfony\Component\Validator\Constraints as Assert; // Symfony's builtin constraints
22+
use Symfony\Component\Validator\Constraints as Assert; // Symfony's built-in constraints
2323
use AppBundle\Validator\Constraints\MinimalProperties; // A custom constraint
2424

2525
/**

distribution/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -707,9 +707,9 @@ API Platform is incredibly efficient for prototyping and Rapid Application Devel
707707
designed to create complex API-driven projects, far beyond simple CRUD apps. It benefits from **strong extension points**
708708
and is **is continuously optimized for performance.** It powers numerous high-traffic websites.
709709

710-
API Platform has a builtin HTTP cache invalidation system which allows to make API Platform apps blazing fast, and it uses
710+
API Platform has a built-in HTTP cache invalidation system which allows to make API Platform apps blazing fast, and it uses
711711
[Varnish](https://varnish-cache.org/) by default. Read more in the chapter
712-
[API Platform Core Library: Enabling the Builtin HTTP Cache Invalidation System](../core/performance.md#enabling-the-builtin-http-cache-invalidation-system).
712+
[API Platform Core Library: Enabling the Built-in HTTP Cache Invalidation System](../core/performance.md#enabling-the-builtin-http-cache-invalidation-system).
713713

714714
API Platform can also be extended using PHP libraries and Symfony bundles.
715715

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
2. [Filter upon the current user](core/extensions.md#example)
8282
17. [Security](core/security.md)
8383
18. [Performance](core/performance.md)
84-
1. [Enabling the Builtin HTTP Cache Invalidation System](core/performance.md#enabling-the-builtin-http-cache-invalidation-system)
84+
1. [Enabling the Built-in HTTP Cache Invalidation System](core/performance.md#enabling-the-builtin-http-cache-invalidation-system)
8585
2. [Enabling the Metadata Cache](core/performance.md#enabling-the-metadata-cache)
8686
3. [Using PPM (PHP-PM)](core/performance.md#using-ppm-php-pm)
8787
4. [Doctrine Queries and Indexes](core/performance.md#doctrine-queries-and-indexes)

0 commit comments

Comments
 (0)