Skip to content

Commit

Permalink
[feenkcom/gtoolkit#4072] Leptier page titles should always be strings
Browse files Browse the repository at this point in the history
  • Loading branch information
akgrant43 committed Oct 18, 2024
1 parent 2826288 commit 8c3a392
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Lepiter-Core/LePharoClassCommentPageType.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Class {
#instVars : [
'pharoClassName'
],
#category : 'Lepiter-Core-Model'
#category : #'Lepiter-Core-Model'
}

{ #category : #jsonV3 }
Expand Down Expand Up @@ -84,5 +84,5 @@ LePharoClassCommentPageType >> printOn: aStream [
{ #category : #accessing }
LePharoClassCommentPageType >> title [

^ pharoClassName, ' Comment'
^ pharoClassName asString, ' Comment'
]
2 changes: 1 addition & 1 deletion src/Lepiter-Core/LePharoClassPageType.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,5 @@ LePharoClassPageType >> printOn: aStream [
{ #category : #accessing }
LePharoClassPageType >> title [

^ pageClassName, ' Page'
^ pageClassName asString, ' Page'
]

0 comments on commit 8c3a392

Please sign in to comment.