Update content of files

This commit is contained in:
GitHub Action 2021-10-23 11:01:34 +00:00
parent c35113d53c
commit 8a15e97dd8

View file

@ -44,7 +44,7 @@
<p>Same with <a href="/constructor/account.sentEmailCode">email verification codes</a>.</p>
<p>In all cases, the pattern is a string of the same length as the string to verify: and matching is as simple as checking if all chars in the source string are the same as in the pattern string.
Some chars in the pattern string may be censored using an asterisk <code>*</code>, in this case any char in the source string is considered valid.</p>
<p>The pattern string can also be a single astrisk, in this case all patterns are considered valid.</p>
<p>The pattern string can also be a single asterisk, in this case all patterns are considered valid.</p>
<p>If the source string is a phone number, it has to be sanitized first to include only the following chars: <code>0123456789</code>.</p>
<p>Example implementation: <a href="https://github.com/DrKLO/Telegram/blob/9ffc7787d6ed4386363fad001334ae411c2877d9/TMessagesProj/src/main/java/org/telegram/messenger/AndroidUtilities.java#L1341">telegram for android</a>.</p></div>