Skip to content

Commit

Permalink
fix: use ] for closing it
Browse files Browse the repository at this point in the history
Change-Id: I60dbc6fcacd47afa70ee85d56cad5a2d42190ee5
Reviewed-on: https://codereview.kdab.com/c/knut/+/141906
Tested-by: Continuous Integration <build@kdab.com>
Reviewed-by: Nicolas Arnaud-Cormos <nicolas@kdab.com>
  • Loading branch information
Montel committed May 22, 2024
1 parent e0da610 commit 983955f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/rangemark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ QString RangeMark::text() const

QString RangeMark::toString() const
{
return QString("[%1, %2)").arg(start()).arg(end());
return QString("[%1, %2]").arg(start()).arg(end());
}

/*!
Expand Down

0 comments on commit 983955f

Please sign in to comment.