Skip to content

Commit 681535c

Browse files
committed
typo
1 parent fb481f5 commit 681535c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/search/search-how-to-index-markdown-blobs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ The Markdown is parsed based on headers into search documents, which contain the
265265

266266
- `sections`: An array that contains objects representing subsections nested under the current section. This array follows the same structure as the top-level `sections` array, allowing for the representation of multiple levels of nested content. Each subsection object also includes `header_level`, `header_name`, `content`, and `ordinal_position` properties, enabling a recursive structure that represents and hierarchy of the Markdown content.
267267

268-
Here's the sample Markdown that we're using to explain an index schemas designed around each parsing mode.
268+
Here's the sample Markdown that we're using to explain the index schemas designed around each parsing mode.
269269

270270
```md
271271
# Section 1
@@ -452,7 +452,7 @@ The resulting search document in the index would look as follows:
452452
453453
## Managing stale documents from Markdown re-indexing
454454

455-
When using one-to-many parsing mode, re-indexing a modified Markdown file can result in stale or duplicate documents if sections are removed. This behavior is specific to one-to-many mode and does not apply to one-to-one parsing.
455+
When using one-to-many parsing mode, re-indexing a modified Markdown file can result in stale or duplicate documents if sections are removed. This behavior is specific to one-to-many mode and doesn't apply to one-to-one parsing.
456456

457457
### Behavior overview
458458

@@ -477,7 +477,7 @@ This method uses a soft-delete to delete documents associated with a specific bl
477477
Steps:
478478

479479
1. Mark the blob as deleted by setting a metadata field.
480-
2. Let the indexer run. It will delete all documents in the index associated with that blob.
480+
2. Let the indexer run. It deletes all documents in the index associated with that blob.
481481
3. Remove the soft-delete marker and re-index the file.
482482

483483
#### Option 2. Use the delete API

0 commit comments

Comments
 (0)