Fix minor typo (#21)

- change 'Captializes' to 'Capitalizes'
This commit is contained in:
Jaeyong Sung
2022-09-05 01:20:32 +09:00
committed by GitHub
parent db7517ffb6
commit 6501c216c6

View File

@@ -16,7 +16,7 @@ pub(crate) fn fahrenheit_to_celsius(degree: f64) -> f64 {
todo!()
}
/// Captializes English alphabets (leaving the other characters intact).
/// Capitalizes English alphabets (leaving the other characters intact).
pub(crate) fn capitalize(input: String) -> String {
todo!()
}