Skip to content

Commit

Permalink
One other harmonization issue for Mono.Options...
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpryor committed Oct 23, 2008
1 parent 184cd42 commit 564b2bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NDesk.Options/NDesk.Options/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ private static List<string> GetLines (string description)

private static int GetLineEnd (int start, int length, string description)
{
int end = Math.Min (start + length, description.Length);
int end = System.Math.Min (start + length, description.Length);
int sep = -1;
for (int i = start; i < end; ++i) {
switch (description [i]) {
Expand Down

0 comments on commit 564b2bd

Please sign in to comment.