Skip to content

Commit

Permalink
fix(structures): 🐛 fix default trailing space behaviour (#62, #63)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNZL committed Jun 23, 2023
1 parent 3ceecf7 commit 97b4b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Structures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public TimeEntry(DetailedReportTimeEntryResponse timeEntryResponse, DetailedRepo
this.Project = this._me.GetProject(this.ProjectId);
}

public string? GetRawDescription(bool withTrailingSpace = true)
public string? GetRawDescription(bool withTrailingSpace = false)
{
if (string.IsNullOrEmpty(this._rawDescription))
{
Expand Down

0 comments on commit 97b4b8a

Please sign in to comment.