From 6c09d41ccf3f3e60637011533747702b9b512396 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Fri, 6 Apr 2012 16:59:44 -0400 Subject: [PATCH] Clean up comment a bit, meant to do this in last push There was a trailing space at the end of the line. --- src/apps/deskcalc/ExpressionTextView.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/apps/deskcalc/ExpressionTextView.cpp b/src/apps/deskcalc/ExpressionTextView.cpp index c6b36ecd55..fa12cb569e 100644 --- a/src/apps/deskcalc/ExpressionTextView.cpp +++ b/src/apps/deskcalc/ExpressionTextView.cpp @@ -311,8 +311,7 @@ ExpressionTextView::SetValue(BString value) while (value[offset] == '0') value.Remove(offset--, 1); - // there is no need to keep the period if no - // digits follow + // no need to keep the period if no digits follow if (value[offset] == '.') value.Remove(offset, 1); }