Skip to content

Commit 61d803b

Browse files
committed
fix: correct typo in error message for unsupported volatility type
1 parent d07e520 commit 61d803b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ pub(crate) fn parse_volatility(value: &str) -> PyDataFusionResult<Volatility> {
9797
"volatile" => Volatility::Volatile,
9898
value => {
9999
return Err(PyDataFusionError::Common(format!(
100-
"Unsupportad volatility type: `{value}`, supported \
100+
"Unsupported volatility type: `{value}`, supported \
101101
values are: immutable, stable and volatile."
102102
)))
103103
}

0 commit comments

Comments
 (0)