Skip to content

Commit

Permalink
Issue #164 force use of period as decimal separator
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterVermont committed Oct 22, 2018
1 parent bcb6c11 commit f3fe400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DaySim/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private static void Main(string[] args) {

if (needToChangeDecimalSeparator) {
//separator was already changed above but printfile was not ready so outputting warning message here.
string decimalSeparatorMessage = string.Format("WARNING: default NumberDecimalSeparator is being overriden to use a comma since DaySim requires this.");
string decimalSeparatorMessage = string.Format("WARNING: default NumberDecimalSeparator is being overriden to use a period for the decimal point since DaySim requires this.");
Console.WriteLine(decimalSeparatorMessage);
if (Global.PrintFile != null) {
Global.PrintFile.WriteLine(decimalSeparatorMessage);
Expand Down

0 comments on commit f3fe400

Please sign in to comment.