Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Dec 27, 2024
1 parent 52d7947 commit 45b8ebb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/indexing/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ After that you can use the ``reindex`` to index all documents:
$engine->reindex($reindexProviders, $reindexConfig);
// reindex specific identifier
// reindex specific identifiers
$reindexConfig = \CmsIg\Seal\Reindex\ReindexConfig::create()
->withIndex('blog')
->withBulkSize(100)
Expand Down Expand Up @@ -179,7 +179,7 @@ After that you can use the ``reindex`` to index all documents:
# reindex specific index since specific date
php artisan cmsig:seal:reindex --index=blog --drop --datetime-boundary="-1 day"
# reindex specific identifier
# reindex specific identifiers
php artisan cmsig:seal:reindex --index=blog --identifiers="1,2,3"
.. group-tab:: Symfony
Expand Down Expand Up @@ -209,7 +209,7 @@ After that you can use the ``reindex`` to index all documents:
# reindex specific index since specific date
bin/console artisan cmsig:seal:reindex --index=blog --drop --datetime-boundary="-1 day"
# reindex specific identifier
# reindex specific identifiers
bin/console artisan cmsig:seal:reindex --index=blog --identifiers="1,2,3"
.. group-tab:: Spiral
Expand Down Expand Up @@ -241,7 +241,7 @@ After that you can use the ``reindex`` to index all documents:
# reindex specific index since specific date
php app.php cmsig:seal:reindex --index=blog --drop --datetime-boundary="-1 day"
# reindex specific identifier
# reindex specific identifiers
php app.php cmsig:seal:reindex --index=blog --identifiers="1,2,3"
.. group-tab:: Mezzio
Expand Down Expand Up @@ -294,7 +294,7 @@ After that you can use the ``reindex`` to index all documents:
# reindex specific index since specific date
vendor/bin/laminas cmsig:seal:reindex --index=blog --drop --datetime-boundary="-1 day"
# reindex specific identifier
# reindex specific identifiers
vendor/bin/laminas cmsig:seal:reindex --index=blog --identifiers="1,2,3"
.. group-tab:: Yii
Expand Down Expand Up @@ -329,7 +329,7 @@ After that you can use the ``reindex`` to index all documents:
# reindex specific index since specific date
./yii cmsig:seal:reindex --index=blog --drop --datetime-boundary="-1 day"
# reindex specific identifier
# reindex specific identifiers
./yii cmsig:seal:reindex --index=blog --identifiers="1,2,3"
Bulk operations
Expand Down

0 comments on commit 45b8ebb

Please sign in to comment.