Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a693b3b

Browse files
hbinayouknowone
andauthored
Update vm/src/object/core.rs
Co-authored-by: Jeong, YunWon <[email protected]>
1 parent d964098 commit a693b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/object/core.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ impl PyObject {
713713
/// Set the dict field. Returns `Err(dict)` if this object does not have a dict field
714714
/// in the first place.
715715
pub fn set_dict(&self, dict: PySetterValue<PyDictRef>) -> Option<()> {
716-
// NOTE(hanif) - So far, this is the only error condition that I know of so we can use Option
716+
// NOTE: So far, this is the only error condition that I know of so we can use Option
717717
// for now.
718718
if self.payload_is::<crate::builtins::function::PyFunction>() {
719719
return None;

0 commit comments

Comments
 (0)