Skip to content

Commit a7d7a4d

Browse files
committed
Fix typos in links
1 parent 99b8aa4 commit a7d7a4d

16 files changed

Lines changed: 26 additions & 26 deletions

File tree

docs/administration/project_organization/bundles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ The following packages are optional and can be installed independently.
143143
|ibexa/cdp|Integration with the [Customer Data Platform](cdp.md)|
144144
|[ibexa/cloud](https://github.com/ibexa/cloud)|Integration with [[[= product_name_cloud =]]](/ibexa_cloud/ibexa_cloud.md)|
145145

146-
In addition, you can extend the capabitilies of your project by installing additional [LTS Updates](editions.md#lts-updates).
146+
In addition, you can extend the capabilities of your project by installing additional [LTS Updates](editions.md#lts-updates).

docs/api/notification_channels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ The `ControllerFeedback` notification is sent in a controller action:
201201
```
202202

203203
For the example, the notification is sent in a back office context for all editions and on the front end for Commerce edition.
204-
An empty template only extending the pagelayout is used for the demonstration.
204+
An empty template only extending the page layout is used for the demonstration.
205205

206206
`templates/themes/admin/notification-sender-controller.html.twig`:
207207
``` twig

docs/commerce/shopping_list/shopping_list_guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ In the out-of-the-box [storefront](storefront.md), a shopping list user can:
6464
- products are kept in shopping list while added to the cart
6565
- products out-of-stock aren't copied and the user is warned
6666
- product quantities are incremented by 1, the user can adjust quantities in the cart
67-
![Shopping list product list with highligts on "Add to cart" and "Add all to cart" buttons](img/add_to_cart.png "“Add to cart” and “Add all to cart” buttons")
67+
![Shopping list product list with highlights on "Add to cart" and "Add all to cart" buttons](img/add_to_cart.png "“Add to cart” and “Add all to cart” buttons")
6868
- Move a product from cart to “My Wishlist” (product is removed from cart and added to the default shopping list)
6969
- Move the whole cart to “My Wishlist” (products are removed from cart and added to the default shopping list)
70-
![Cart's product list with highligts on "Move to My Wishlist" and "Move all to wishlist" buttons](img/move_to_my_wishlist.png "“Move to My Wishlist” and “Move all to wishlist” buttons")
70+
![Cart's product list with highlights on "Move to My Wishlist" and "Move all to wishlist" buttons](img/move_to_my_wishlist.png "“Move to My Wishlist” and “Move all to wishlist” buttons")
7171
- Delete a shopping list
7272

7373
## Extensibility

docs/content_management/content_api/creating_content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Value of the Image field type contains the path to the image file and other basi
4949

5050
### Creating content with RichText
5151

52-
The RichText field accepts values in a custom flavor of [Docbook](https://github.com/docbook/wiki/wiki) format.
52+
The RichText field accepts values in a custom flavor of [DocBook](https://github.com/docbook/wiki/wiki) format.
5353
For example, to add a RichText paragraph, provide the following as input:
5454

5555
``` xml

docs/content_management/data_migration/importing_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ The following example creates an image [content item](#content-items) from a loc
465465
```
466466

467467
This migration uses a [reference](managing_migrations.md#references) to store the created image content ID, and then uses it while creating the asset.
468-
It uses an [expression syntax](#expression-syntax) to [concat (`~`)]([[= symfony_doc =]]/reference/formats/expression_language.html#string-operators)
468+
It uses an [expression syntax](#expression-syntax) to [concatenate (`~`)]([[= symfony_doc =]]/reference/formats/expression_language.html#string-operators)
469469
the mandatory scheme `ezcontent://` and the image content ID through the [`reference` function](#built-in-functions) used on the reference's name.
470470

471471
#### Product prices

docs/content_management/field_types/field_type_reference/datefield.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Hash value of this field type is an array with two keys:
5858

5959
| Key | Type | Description | Example |
6060
|-------------|-----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|
61-
| `timestamp` | `integer` | Time information in [unix format timestamp](https://en.wikipedia.org/wiki/Unix_time). | `1400856992` |
61+
| `timestamp` | `integer` | Time information in [Unix format timestamp](https://en.wikipedia.org/wiki/Unix_time). | `1400856992` |
6262
| `rfc850` | `string` | Time information as a string in [RFC 850 date format](https://datatracker.ietf.org/doc/html/rfc850). As input, this has higher precedence over the timestamp value. | `"Friday, 23-May-14 14:56:14 GMT+0000"` |
6363

6464
``` php

docs/content_management/images/configure_image_editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Configure image editor to crop, flip, and modify images.
44

55
# Configure Image Editor
66

7-
When a content item contains fields of the [ibexa_image](imageassetfield.md) type, users can perform basic image editing functions with the Image Editor.
7+
When a content item contains fields of the [`ibexa_image`](imageassetfield.md) type, users can perform basic image editing functions with the Image Editor.
88

99
For more information, see [User Documentation]([[= user_doc =]]/image_management/edit_images/).
1010

docs/discounts/extend_discounts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ To do it, create a class implementing the [`DiscountValueFormatterInterface`](/a
219219
You can change the [the default discount priority](discounts_guide.md#discounts-priority) by creating a class implementing the [`DiscountPrioritizationStrategyInterface`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Discounts-DiscountPrioritizationStrategyInterface.html) and aliasing to it the default implementation.
220220

221221
The example below decorates the default implementation to prioritize recently updated discounts above all the others.
222-
It uses one of the existing [discount search criterions](discounts_criteria.md).
222+
It uses one of the existing [discount search criteria](discounts_criteria.md).
223223

224224
``` php
225225
[[= include_file('code_samples/discounts/src/Discounts/RecentDiscountPrioritizationStrategy.php') =]]

docs/infrastructure_and_maintenance/cache/http_cache/content_aware_cache.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,17 @@ You can solve this issue in one of the following ways:
6767

6868
Varnish configuration:
6969

70-
- [http_resp_hdr_len](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-resp-hdr-len) (default 8k, change to for example, 32k)
71-
- [http_max_hdr](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-max-hdr) (default 64, change to for example, 128)
72-
- [http_resp_size](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-resp-size) (default 23k, change to for example, 96k)
73-
- [workspace_backend](https://varnish-cache.org/docs/6.0/reference/varnishd.html#workspace-backend) (default 64k, change to for example, 128k)
70+
- [`http_resp_hdr_len`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-resp-hdr-len) (default 8k, change to for example, 32k)
71+
- [`http_max_hdr`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-max-hdr) (default 64, change to for example, 128)
72+
- [`http_resp_size`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#http-resp-size) (default 23k, change to for example, 96k)
73+
- [`workspace_backend`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#workspace-backend) (default 64k, change to for example, 128k)
7474

75-
If you need to see these long headers in `varnishlog`, adapt the [vsl_reclen](https://varnish-cache.org/docs/6.0/reference/varnishd.html#vsl-reclen) setting.
75+
If you need to see these long headers in `varnishlog`, adapt the [`vsl_reclen`](https://varnish-cache.org/docs/6.0/reference/varnishd.html#vsl-reclen) setting.
7676

7777
Nginx has a default limit of 4k/8k when buffering responses:
7878

79-
- For [PHP-FPM](https://www.php.net/manual/en/install.fpm.php) setup using proxy module, configure [proxy_buffer_size](https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffer_size)
80-
- For FastCGI setup using fastcgi module, configure [fastcgi_buffer_size](https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffer_size)
79+
- For [PHP-FPM](https://www.php.net/manual/en/install.fpm.php) setup using proxy module, configure [`proxy_buffer_size`](https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffer_size)
80+
- For FastCGI setup using fastcgi module, configure [`fastcgi_buffer_size`](https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_buffer_size)
8181

8282
Fastly has a `Surrogate-Key` header limit of 16 kB, and this cannot be changed.
8383

docs/infrastructure_and_maintenance/cache/persistence_cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ parameters:
124124
### Redis/Valkey
125125
126126
[Redis](https://redis.io/), an in-memory data structure store, is one of the supported cache solutions for clustering.
127-
Redis is used via [Redis pecl extension](https://pecl.php.net/package/redis).
127+
Redis is used via [Redis PECL extension](https://pecl.php.net/package/redis).
128128
129129
See [Redis Cache Adapter in Symfony documentation]([[= symfony_doc =]]/components/cache/adapters/redis_adapter.html#configure-the-connection for information on how to connect to Redis.
130130

0 commit comments

Comments
 (0)