This commit is contained in:
Maximilian Roos 2018-09-27 19:54:53 -04:00
parent ed2739829f
commit 9806784503
No known key found for this signature in database
GPG Key ID: 3232F28BEDA66FCD
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ fn sum_as_string(a: usize, b: usize) -> PyResult<String> {
Ok((a + b).to_string())
}
/// This module is a python moudle implemented in Rust.
/// This module is a python module implemented in Rust.
#[pymodinit]
fn string_sum(py: Python, m: &PyModule) -> PyResult<()> {
m.add_function(wrap_function!(sum_as_string))?;