Skip to content

Commit

Permalink
Minor consistency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Jun 28, 2021
1 parent 3c25d71 commit 3545e00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ printInteropOn: aStream
| properties |
aStream nextPutAll: 'ForeignObject'.
properties := OrderedCollection new.
(Interop isNull: self) ifTrue: [ properties add: 'nil' ].
(Interop isNull: self) ifTrue: [ properties add: 'null' ].
(Interop isBoolean: self) ifTrue: [ properties add: 'bool' ].
(Interop isString: self) ifTrue: [ properties add: 'string' ].
(Interop isNumber: self) ifTrue: [ properties add: 'number' ].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"notNil" : "fn 11/11/2019 19:51",
"or:" : "fn 2/11/2021 10:35",
"postCopy" : "fn 8/2/2019 16:59",
"printInteropOn:" : "fn 6/28/2021 11:44",
"printInteropOn:" : "fn 6/28/2021 13:58",
"printOn:" : "fn 6/25/2021 11:08",
"respondsTo:" : "fn 6/25/2021 17:14",
"shallowCopy" : "fn 8/2/2019 16:59",
Expand Down

0 comments on commit 3545e00

Please sign in to comment.