| Bug #65114 | minor spelling fix | ||
|---|---|---|---|
| Submitted: | 26 Apr 2012 10:53 | Modified: | 14 Aug 2012 20:13 |
| Reporter: | Dmitry Smirnov | Email Updates: | |
| Status: | Closed | Impact on me: | |
| Category: | MySQL Utilities | Severity: | S3 (Non-critical) |
| Version: | 1.0.5 | OS: | Any |
| Assigned to: | CPU Architecture: | Any | |
| Tags: | Contribution | ||
[26 Apr 2012 10:54]
Dmitry Smirnov
minor spelling correction
Attachment: spelling.patch (text/x-patch), 1.16 KiB.
[26 Apr 2012 10:55]
Dmitry Smirnov
In the attached file there is another correction: "iff"-->"if"
[26 Apr 2012 18:17]
Sveta Smirnova
Thank you for the report. Verified as described.
[14 Aug 2012 20:13]
Chuck Bell
Fixed in 1.0.5

Description: just a minor spelling fix How to repeat: . Suggested fix: Last-Update: 2012-04-11 Author: Dmitry Smirnov <onlyjob@member.fsf.org> Forwarded: 2012-04-26 Description: minor spelling correction --- a/mysql/utilities/common/options.py +++ b/mysql/utilities/common/options.py @@ -570,12 +570,12 @@ "(?:(?!:)|:(?=:))" # Colon iff it would be part of a wildcard "(?:" # Repeat 6 times: "[0-9a-f]{0,4}" # A group of at most four hexadecimal digits - "(?:(?<=::)|(?<!::):)" # Colon unless preceeded by wildcard + "(?:(?<=::)|(?<!::):)" # Colon unless preceded by wildcard "){6}(?:" # Either "[0-9a-f]{0,4}" # Another group - "(?:(?<=::)|(?<!::):)" # Colon unless preceeded by wildcard + "(?:(?<=::)|(?<!::):)" # Colon unless preceded by wildcard "[0-9a-f]{0,4}" # Last group - "(?:(?<=::)" # Colon iff preceeded by exacly one colon + "(?:(?<=::)" # Colon iff preceded by exacly one colon "|(?<!:)|(?<=:)(?<!::) :)" # OR "|" # A v4 address with NO leading zeros "(?:25[0-4]|2[0-4]\d|1\d\d|[1-9]?\d)"