Skip to content

Commit 5f3cac5

Browse files
committed
Deploying to gh-pages from @ 4f99b36 🚀
1 parent ecf261b commit 5f3cac5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

print.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5576,7 +5576,7 @@ <h3 id="lint-检测"><a class="header" href="#lint-检测">【Lint 检测】</a>
55765576
fn three_vowels(word: &amp;String) -&gt; bool {
55775577
let mut vowel_count = 0;
55785578
for c in word.chars() {
5579-
matchc {
5579+
match c {
55805580
'a' | 'e' | 'i' | 'o' | 'u' =&gt; {
55815581
vowel_count += 1;
55825582
if vowel_count &gt;= 3 {

safe-guides/coding_practice/fn-design/G.FUD.06.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h2 id="gfud06--函数参数应该考虑兼容多种类型"><a class="header" hr
146146
fn three_vowels(word: &amp;String) -&gt; bool {
147147
let mut vowel_count = 0;
148148
for c in word.chars() {
149-
matchc {
149+
match c {
150150
'a' | 'e' | 'i' | 'o' | 'u' =&gt; {
151151
vowel_count += 1;
152152
if vowel_count &gt;= 3 {

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

searchindex.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)