From 1f47af82ec35339047e4deac652db09c37bcd7d2 Mon Sep 17 00:00:00 2001 From: Jacob Hicks Date: Wed, 28 Oct 2015 23:12:59 -0500 Subject: [PATCH] Fix README.md spelling --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed032b7..7fe06e8 100644 --- a/README.md +++ b/README.md @@ -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 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.