Change `create` to `construct` in rustdocs

This commit is contained in:
Jamil Lambert, PhD 2025-01-20 16:06:29 +00:00
parent 05c28cf31d
commit 55470f7357
No known key found for this signature in database
GPG Key ID: 54DC29234AB5D2C0
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ fn int<T: Integer, S: AsRef<str> + Into<InputString>>(s: S) -> Result<T, ParseIn
/// Implements standard parsing traits for `$type` by calling `parse::int`.
///
/// Once the string is converted to an integer the infallible conversion function `fn` is used to
/// create the type `to`.
/// construct the type `to`.
///
/// Implements:
///