You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ iex> Unicode.String.split "This is a sentence. And another.", break: :line
76
76
77
77
## Segment Streaming
78
78
79
-
Segmentation can also be streamed using `Unicode.String.stream/2`. For large strings this may improve memory usage since the intermediate segments will garbage collected when they fall out of scope.
79
+
Segmentation can also be streamed using `Unicode.String.stream/2`. For large strings this may improve memory usage since the intermediate segments will be garbage collected when they fall out of scope.
80
80
81
81
```elixir
82
82
iex>Enum.to_listUnicode.String.stream("this is a set of words", trim:true) ["this", "is", "a", "set", "of", "words"]
0 commit comments