Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/string_array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ impl StringArray {

/// Returns an iterator over the strings contained within this array.
///
/// The iterator yields `Option<&str>` as it is unknown whether the contents
/// are utf-8 or not.
/// The iterator yields `Result<Option<&str>, Error>` as it is unknown
/// whether the contents are utf-8 or not.
pub fn iter(&self) -> Iter<'_> {
Iter {
range: 0..self.len(),
Expand Down
Loading