Skip to content

Commit f747f1d

Browse files
committed
Fix capitalization in error message
Signed-off-by: Padraic Fanning <[email protected]>
1 parent 10e2616 commit f747f1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/builtins/function.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ impl PyFunction {
149149
kwargs.set_item(name, value, vm)?;
150150
} else {
151151
return Err(
152-
vm.new_type_error(format!("Got an unexpected keyword argument '{}'", name))
152+
vm.new_type_error(format!("got an unexpected keyword argument '{}'", name))
153153
);
154154
}
155155
}

0 commit comments

Comments
 (0)