Skip to content

Commit 33e4830

Browse files
Merge #1710
1710: Remove extra spaces r=maryamsulemani97 a=maryamsulemani97 Co-authored-by: Maryam <[email protected]>
2 parents 5aa8764 + 4253e71 commit 33e4830

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

learn/advanced/dumps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The above code sample returns an object with the following details about the dum
3737
}
3838
```
3939

40-
After dump creation is finished, the dump file is added to the dump directory. By default, this folder is named `dumps` and can be found in the same directory as your Meilisearch binary. You can customize [this using the `--dumps-dir` configuration option](/learn/configuration/instance_options.md#dumps-destination). **If the dump directory does not already exist when the dump creation process is called, Meilisearch will create it.**
40+
After dump creation is finished, the dump file is added to the dump directory. By default, this folder is named `dumps` and can be found in the same directory as your Meilisearch binary. You can customize [this using the `--dumps-dir` configuration option](/learn/configuration/instance_options.md#dumps-destination). **If the dump directory does not already exist when the dump creation process is called, Meilisearch will create it.**
4141

4242
If a dump file is visible in the file system, the dump process was successfully completed. **Meilisearch will never create a partial dump file**, even if you interrupt an instance while it is generating a dump.
4343

learn/advanced/known_limitations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ If your query is `Hello - World`:
6161

6262
**Limitation:** An index can contain no more than 4,294,967,296 documents.
6363

64-
**Explanation:** This is the largest possible value for a 32-bit unsigned integer. Since Meilisearch's engine uses unsigned integers to identify documents internally, this is the maximum number of documents that can be stored in an index.
64+
**Explanation:** This is the largest possible value for a 32-bit unsigned integer. Since Meilisearch's engine uses unsigned integers to identify documents internally, this is the maximum number of documents that can be stored in an index.
6565

6666
## Length of individual `filterableAttributes` values
6767

learn/cookbooks/aws.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Choose the storage **device** and **size** for your Meilisearch instance.
5555

5656
![Page titled 'Step 4: Add Storage'. Text at bottom of screen: Free tier eligible users can get up to 30GB of EBS General Purpose (SSD) or Magnetic storage.](/aws/05.storage.png)
5757

58-
The amount of storage space required can [vary drastically](/learn/advanced/storage.md#measured-disk-usage) depending on the data you plan to index. In this example, we will use 25 GiB, which is more than enough for most small datasets (< 1 million documents). We have the **Volume Type** set to **General Purpose SSD (gp2)**.
58+
The amount of storage space required can [vary drastically](/learn/advanced/storage.md#measured-disk-usage) depending on the data you plan to index. In this example, we will use 25 GiB, which is more than enough for most small datasets (< 1 million documents). We have the **Volume Type** set to **General Purpose SSD (gp2)**.
5959

6060
When you're ready, click on **Next: Add Tags** to continue.
6161

learn/core_concepts/documents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ As an example, let's say you are creating an index that contains information abo
8383

8484
In the above example:
8585

86-
- `"id"`, `"title"`, `"genres"`, `"release-year"`, and `"cast"` are attributes
86+
- `"id"`, `"title"`, `"genres"`, `"release-year"`, and `"cast"` are attributes
8787
- Each attribute is associated with a value, e.g. `"Kung Fu Panda"` is the value of `"title"`
8888
- The document contains a field with the primary key attribute and a unique document id as its value: `"id": "1564saqw12ss"`
8989

0 commit comments

Comments
 (0)