Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ streams.Add(stream1);
Stream combinationStream = new CombinationStream(streams);
```

You can get the internal list of streams using `InteralStreams` property.
You can get the internal list of streams using `InternalStreams` property.

```csharp
IList<Stream> streams = combinationStream.InternalStreams;
```

When calling `combinationStream.Dispose()` all streams will be disposed. If you want to have explict control over
When calling `combinationStream.Dispose()` all streams will be disposed. If you want to have explicit control over
disposing certain streams, you can make use of the overload contructor and pass the list of stream index that you
would like to auto dispose when calling `Dispose()` on the CombinationStream.

Expand Down