Skip to content

Commit

Permalink
An Array of character should not be concatenated to a String. However…
Browse files Browse the repository at this point in the history
… a string is ok
  • Loading branch information
VincentBlondeau committed Dec 5, 2019
1 parent 83e84de commit efd27e7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Kernel/Character.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,11 @@ Character class >> space [

{ #category : #'special characters' }
Character class >> specialCharacters [
^'+-/\*~<>=@,%|&?!', {self centeredDot . self divide . self plusOrMinus . self times }
^ '+-/\*~<>=@,%|&?!' , (String
with: self centeredDot
with: self divide
with: self plusOrMinus
with: self times)
]

{ #category : #queries }
Expand Down

0 comments on commit efd27e7

Please sign in to comment.