dependes -> depends (#462)

This commit is contained in:
siiky 2023-02-04 00:36:22 +00:00 committed by GitHub
parent 24b5e9a1ef
commit 38eb2236ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -36,7 +36,7 @@ func main() {
// To count how many _runes_ are in a string, we can use
// the `utf8` package. Note that the run-time of
// `RuneCountInString` dependes on the size of the string,
// `RuneCountInString` depends on the size of the string,
// because it has to decode each UTF-8 rune sequentially.
// Some Thai characters are represented by multiple UTF-8
// code points, so the result of this count may be surprising.

View File

@ -1,2 +1,2 @@
766c486b73701deb5af9a3f5249d4febc3beda89
y9AcFzz3UJn
45a1127788eb4c0acfef48efee9ca386e06d4c58
39BpTLf6BAz

View File

@ -48,7 +48,7 @@ introduction to the topic.</p>
</td>
<td class="code leading">
<a href="https://go.dev/play/p/y9AcFzz3UJn"><img title="Run code" src="play.png" class="run" /></a><img title="Copy code" src="clipboard.png" class="copy" />
<a href="https://go.dev/play/p/39BpTLf6BAz"><img title="Run code" src="play.png" class="run" /></a><img title="Copy code" src="clipboard.png" class="copy" />
<pre class="chroma"><span class="kn">package</span> <span class="nx">main</span>
</pre>
</td>
@ -131,7 +131,7 @@ the bytes that constitute the code points in <code>s</code>.</p>
<td class="docs">
<p>To count how many <em>runes</em> are in a string, we can use
the <code>utf8</code> package. Note that the run-time of
<code>RuneCountInString</code> dependes on the size of the string,
<code>RuneCountInString</code> depends on the size of the string,
because it has to decode each UTF-8 rune sequentially.
Some Thai characters are represented by multiple UTF-8
code points, so the result of this count may be surprising.</p>