File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
dotnet/CucumberExpressions Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
8
## [ Unreleased]
9
+ ### Fixed
10
+ - [ .NET] Fix casing in "word" parameter type constant
9
11
10
12
## [ 15.1.1] - 2022-04-21
11
13
### Fixed
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public static class ParameterTypeConstants
27
27
public static readonly string FloatParameterRegexEn = GetFloatParameterRegex ( CultureInfo . InvariantCulture ) ;
28
28
public static readonly string [ ] FloatParameterRegexpsEn = { FloatParameterRegexEn } ;
29
29
30
- public const string WordParameterName = "Word " ;
30
+ public const string WordParameterName = "word " ;
31
31
public const string WordParameterRegex = "[^\\ s]+" ;
32
32
public static readonly string [ ] WordParameterRegexps = { WordParameterRegex } ;
33
33
You can’t perform that action at this time.
0 commit comments