Baseline correction

This commit is contained in:
Daniel Ziltener 2022-05-18 20:09:01 +02:00
parent 184ae8e330
commit b0df8f10e0
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
Class {
#name : #BaselineOfClouseau,
#superclass : #Object,
#superclass : #BaselineOf,
#category : #BaselineOfClouseau
}
@ -11,3 +11,8 @@ BaselineOfClouseau >> baseline: spec [
for: #common
do: [ spec package: 'Clouseau' ].
]
{ #category : #accessing }
BaselineOfClouseau >> projectClass [
^ MetacelloCypressBaselineProject.
]