diff --git a/qt-mobile/DiveList.qml b/qt-mobile/DiveList.qml index e2f6857b7..52cdc20f5 100644 --- a/qt-mobile/DiveList.qml +++ b/qt-mobile/DiveList.qml @@ -44,7 +44,7 @@ Rectangle { } } - //Layout of the page: (mini profile, dive no, date at the tio + //Layout of the page: (mini profile, dive no, date at the top //And other details at the bottom. Row { id: topLayout @@ -58,7 +58,7 @@ Rectangle { text: diveNumber + ' (' + date + ')' } Text { text: location; width: parent.width } - Text { text: 'Depth: ' + depth + ' Duration:' + duration; width: parent.width } + Text { text: 'Depth: ' + depth + ' Duration: ' + duration; width: parent.width } } } }