Use correct example in smart matching table

This commit is contained in:
micbou 2018-04-29 12:45:22 +02:00
parent 07c186078f
commit 0d764b3d10
No known key found for this signature in database
GPG Key ID: C7E8FD1F3BDA1E05
2 changed files with 7 additions and 7 deletions

View File

@ -866,9 +866,9 @@ letter with or without marks:
<tr>
<th>matches</th>
<th>foo</th>
<th>føo</th>
<th>fôo</th>
<th>fOo</th>
<th>fØo</th>
<th>fÔo</th>
</tr>
<tr>
<th>foo</th>
@ -878,7 +878,7 @@ letter with or without marks:
<td>✔️</td>
</tr>
<tr>
<th>føo</th>
<th>fôo</th>
<td></td>
<td>✔️</td>
<td></td>
@ -892,7 +892,7 @@ letter with or without marks:
<td>✔️</td>
</tr>
<tr>
<th>fØo</th>
<th>fÔo</th>
<td></td>
<td></td>
<td></td>

View File

@ -1118,15 +1118,15 @@ both). On top of that, a letter with no diacritic marks will match that letter
with or without marks:
---------------------------------------------
| _matches_ | _foo_ | _føo_ | _fOo_ | _fØo_ |
| _matches_ | _foo_ | _fôo_ | _fOo_ | _fÔo_ |
---------------------------------------------
| _foo_ | ✔️ | ✔️ | ✔️ | ✔️ |
---------------------------------------------
| _føo_ | ❌ | ✔️ | ❌ | ✔️ |
| _fôo_ | ❌ | ✔️ | ❌ | ✔️ |
---------------------------------------------
| _fOo_ | ❌ | ❌ | ✔️ | ✔️ |
---------------------------------------------
| _fØo_ | ❌ | ❌ | ❌ | ✔️ |
| _fÔo_ | ❌ | ❌ | ❌ | ✔️ |
---------------------------------------------