Skip to content

Commit 5ef6e2b

Browse files
Update src/input/input_python.rs
Co-authored-by: David Hewitt <[email protected]>
1 parent e8f1385 commit 5ef6e2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/input/input_python.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ impl<'py> Input<'py> for Bound<'py, PyAny> {
338338
fn validate_fraction(&self, strict: bool, py: Python<'py>) -> ValMatch<Bound<'py, PyAny>> {
339339
let fraction_type = get_fraction_type(py);
340340

341-
// Fast path for existing decimal objects
341+
// Fast path for existing fraction objects
342342
if self.is_exact_instance(fraction_type) {
343343
return Ok(ValidationMatch::exact(self.to_owned().clone()));
344344
}

0 commit comments

Comments
 (0)