diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-08-18 19:23:28 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2015-12-02 15:18:23 +0100 |
commit | e69bad19f8d314862f53a7e0acc52247c9662275 (patch) | |
tree | acbd3ce64da5aefd8df0efe18f0fc9311a25d852 /src | |
parent | 8a03727d9cc975a3d0843d83ef05957b9e9fbbca (diff) |
[trivial] Fix typo in peertablemodel.cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/peertablemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/peertablemodel.cpp b/src/qt/peertablemodel.cpp index 770a860544..94837679d8 100644 --- a/src/qt/peertablemodel.cpp +++ b/src/qt/peertablemodel.cpp @@ -85,7 +85,7 @@ public: } if (sortColumn >= 0) - // sort cacheNodeStats (use stable sort to prevent rows jumping around unneceesarily) + // sort cacheNodeStats (use stable sort to prevent rows jumping around unnecessarily) qStableSort(cachedNodeStats.begin(), cachedNodeStats.end(), NodeLessThan(sortColumn, sortOrder)); // build index map |