Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fix unexpected doctest error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan committed May 6, 2022
1 parent 3b9adcb commit e1f5f65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/array/dictionary/mutable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use super::{DictionaryArray, DictionaryKey};
/// let mut array: MutableDictionaryArray<i32, MutableUtf8Array<i32>> = MutableDictionaryArray::new();
/// array.try_push(Some("A"))?;
/// array.try_push(Some("B"))?;
/// array.try_push(None)?;
/// array.push_null();
/// array.try_push(Some("C"))?;
/// # Ok(())
/// # }
Expand Down

0 comments on commit e1f5f65

Please sign in to comment.