Skip to content

Commit

Permalink
Fix instance variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
JurajKubelka committed Jul 26, 2024
1 parent 8e5bc57 commit c97256d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Class {
#name : #GtPharoExampleSuiteMediatorSignal,
#superclass : #BeaconSignal,
#instVars : [
'medator'
'mediator'
],
#category : #'GToolkit-Pharo-Coder-UI-Examples'
}
Expand All @@ -15,13 +15,13 @@ GtPharoExampleSuiteMediatorSignal >> id [
{ #category : #accessing }
GtPharoExampleSuiteMediatorSignal >> mediator [

^ medator
^ mediator
]

{ #category : #accessing }
GtPharoExampleSuiteMediatorSignal >> mediator: anObject [

medator := anObject
mediator := anObject
]

{ #category : #accessing }
Expand Down

0 comments on commit c97256d

Please sign in to comment.