Skip to content

Commit

Permalink
Merge pull request #1916 from astares/22583-Tag-ManifestCollectionsSt…
Browse files Browse the repository at this point in the history
…reams-and-related-classes-in-Collections-Streams

22583 Tag ManifestCollectionsStreams and related classes in Collections-Streams
  • Loading branch information
MarcusDenker committed Oct 15, 2018
2 parents 2341f98 + 40df1df commit 008a1cf
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/Collections-Streams/DecoratorStream.class.st
Expand Up @@ -9,7 +9,7 @@ Class {
#instVars : [
'decoratedStream'
],
#category : #'Collections-Streams'
#category : #'Collections-Streams-Base'
}

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/Collections-Streams/Generator.class.st
Expand Up @@ -76,7 +76,7 @@ Class {
'continue',
'home'
],
#category : #'Collections-Streams'
#category : #'Collections-Streams-Base'
}

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/Collections-Streams/LimitedWriteStream.class.st
Expand Up @@ -10,7 +10,7 @@ Class {
'limit',
'limitBlock'
],
#category : #'Collections-Streams'
#category : #'Collections-Streams-Base'
}

{ #category : #accessing }
Expand Down
Expand Up @@ -4,7 +4,7 @@ All Stream hierarchy: read/write stream
Class {
#name : #ManifestCollectionsStreams,
#superclass : #PackageManifest,
#category : #'Collections-Streams'
#category : #'Collections-Streams-Manifest'
}

{ #category : #'meta-data' }
Expand Down
2 changes: 1 addition & 1 deletion src/Collections-Streams/NullStream.class.st
Expand Up @@ -10,7 +10,7 @@ Class {
'position',
'lastElement'
],
#category : #'Collections-Streams'
#category : #'Collections-Streams-Base'
}

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/Collections-Streams/PositionableStream.class.st
Expand Up @@ -9,7 +9,7 @@ Class {
'position',
'readLimit'
],
#category : #'Collections-Streams'
#category : #'Collections-Streams-Base'
}

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/Collections-Streams/ReadStream.class.st
Expand Up @@ -4,7 +4,7 @@ I represent an accessor for a sequence of objects that can only read objects fro
Class {
#name : #ReadStream,
#superclass : #PositionableStream,
#category : #'Collections-Streams'
#category : #'Collections-Streams-Base'
}

{ #category : #modes }
Expand Down
2 changes: 1 addition & 1 deletion src/Collections-Streams/ReadWriteStream.class.st
Expand Up @@ -4,7 +4,7 @@ I represent an accessor for a sequence of objects. My instances can both read an
Class {
#name : #ReadWriteStream,
#superclass : #WriteStream,
#category : #'Collections-Streams'
#category : #'Collections-Streams-Base'
}

{ #category : #comparing }
Expand Down
2 changes: 1 addition & 1 deletion src/Collections-Streams/Stream.class.st
Expand Up @@ -4,7 +4,7 @@ I am an abstract class that represents an accessor for a sequence of objects. Th
Class {
#name : #Stream,
#superclass : #Object,
#category : #'Collections-Streams'
#category : #'Collections-Streams-Base'
}

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/Collections-Streams/WriteStream.class.st
Expand Up @@ -7,7 +7,7 @@ Class {
#instVars : [
'writeLimit'
],
#category : #'Collections-Streams'
#category : #'Collections-Streams-Base'
}

{ #category : #'instance creation' }
Expand Down

0 comments on commit 008a1cf

Please sign in to comment.