Skip to content

Commit 8171b6a

Browse files
committed
Fix typos in links (#3202)
* Fix typos in links * Empty commit
1 parent 52c883e commit 8171b6a

12 files changed

Lines changed: 21 additions & 21 deletions

File tree

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
@@ -406,7 +406,7 @@ The following example creates an image [content item](#content-items) from a loc
406406
```
407407

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

412412
#### 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 [ezimage](imageassetfield.md) type, users can perform basic image editing functions with the Image Editor.
7+
When a content item contains fields of the [`ezimage`](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

docs/infrastructure_and_maintenance/sessions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ To set it up, you need to:
112112
Alternatively if you have needs to configure the servers dynamically:
113113

114114
- Set `%ibexa.session.handler_id%` (or `SESSION_HANDLER_ID` env var) to `Ibexa\Bundle\Core\Session\Handler\NativeSessionHandler`
115-
- Set `%ibexa.session.save_path%` (or `SESSION_SAVE_PATH` env var) to [save_path config for Redis](https://github.com/phpredis/phpredis/#php-session-handler)
115+
- Set `%ibexa.session.save_path%` (or `SESSION_SAVE_PATH` env var) to [`save_path` config for Redis](https://github.com/phpredis/phpredis/#php-session-handler)
116116

117117
!!! note "[[= product_name_cloud =]]"
118118

docs/release_notes/ez_platform_v3.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Display of field groups has been improved in content preview and editing.
9292

9393
When editing, field groups are now presented in tabs:
9494

95-
![Field group tabls in content editing](3.1_collapsible_fields_edit.png)
95+
![Field group tabs in content editing](3.1_collapsible_fields_edit.png)
9696

9797
In Content preview, the group sections are collapsible:
9898

docs/resources/new_in_doc.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ Documentation examples and [PHP API Reference](https://doc.ibexa.co/en/5.0/api/p
364364
You can use [`ibexa/rector`](https://github.com/ibexa/rector#readme) package that allows to maintain your custom PHP code quality.
365365
Consult the [Ibexa DXP v5.0 renames, deprecations and removals](https://doc.ibexa.co/en/5.0/release_notes/ibexa_dxp_v5.0_deprecations/) to learn more about the changes.
366366

367-
Major additions to the PHP API Reference are [`Ibexa\Contracts\Collaboration`](https://doc.ibexa.co/en/5.0/api/php_api/php_api_reference/namespaces/ibexa-contracts-collaboration.html) and [`Ibexa\Contracts\Share`](https://doc.ibexa.co/en/5.0/api/php_api/php_api_reference/namespaces/ibexa-contracts-share.html) namespaces, the bulding blocks for the [collaboration framework](https://doc.ibexa.co/en/5.0/release_notes/ibexa_dxp_v5.0/#collaboration).
367+
Major additions to the PHP API Reference are [`Ibexa\Contracts\Collaboration`](https://doc.ibexa.co/en/5.0/api/php_api/php_api_reference/namespaces/ibexa-contracts-collaboration.html) and [`Ibexa\Contracts\Share`](https://doc.ibexa.co/en/5.0/api/php_api/php_api_reference/namespaces/ibexa-contracts-share.html) namespaces, the building blocks for the [collaboration framework](https://doc.ibexa.co/en/5.0/release_notes/ibexa_dxp_v5.0/#collaboration).
368368

369369
#### REST API
370370

@@ -619,7 +619,7 @@ Enhanced the PHP API with the following new classes and interfaces:
619619

620620
### Trainings
621621

622-
- The Content Editor Training has been released. Learn more in the [annoucement blogpost](https://www.ibexa.co/blog/constant-development-is-key-so-here-s-a-new-training-for-content-editors)
622+
- The Content Editor Training has been released. Learn more in the [announcement blog post](https://www.ibexa.co/blog/constant-development-is-key-so-here-s-a-new-training-for-content-editors)
623623

624624
### Infrastructure and maintenance
625625

@@ -669,7 +669,7 @@ Enhanced the PHP API with the following new classes and interfaces:
669669
### Search
670670

671671
- New [`IsBookmarked` location criterion](https://doc.ibexa.co/en/latest/search/criteria_reference/isbookmarked_criterion/)
672-
- [`IsUserEnabled` is now available on Solr and Elastisearch](https://doc.ibexa.co/en/latest/search/criteria_reference/isuserenabled_criterion/)
672+
- [`IsUserEnabled` is now available on Solr and Elasticsearch](https://doc.ibexa.co/en/latest/search/criteria_reference/isuserenabled_criterion/)
673673

674674
### Documentation
675675

@@ -1065,7 +1065,7 @@ Enhanced the PHP API with the following new classes and interfaces:
10651065

10661066
### Storefront
10671067

1068-
- [Display language name instead of its code in language swticher](https://doc.ibexa.co/en/latest/templating/twig_function_reference/storefront_twig_functions/#ibexa_storefront_get_language_name_by_code)
1068+
- [Display language name instead of its code in language switcher](https://doc.ibexa.co/en/latest/templating/twig_function_reference/storefront_twig_functions/#ibexa_storefront_get_language_name_by_code)
10691069

10701070
### Templating
10711071

0 commit comments

Comments
 (0)