[Docs] Fix a typo in Create Index naming limitation (#30891)

This commit is contained in:
lipsill 2018-06-01 18:15:24 +02:00 committed by Christoph Büscher
parent 4522b57e07
commit a8c643e833
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ There are several limitations to what you can name your index. The complete lis
- Cannot include `\`, `/`, `*`, `?`, `"`, `<`, `>`, `|`, ` ` (space character), `,`, `#`
- Indices prior to 7.0 could contain a colon (`:`), but that's been deprecated and won't be supported in 7.0+
- Cannot start with `-`, `_`, `+`
- Cannot be `.` or ``..`
- Cannot be `.` or `..`
- Cannot be longer than 255 bytes (note it is bytes, so multi-byte characters will count towards the 255 limit faster)
======================================================