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/)
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
88## [ Unreleased]
9+ ### Fixed
10+ - [ .NET] Fix casing in "word" parameter type constant
911
1012## [ 15.1.1] - 2022-04-21
1113### Fixed
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public static class ParameterTypeConstants
2727 public static readonly string FloatParameterRegexEn = GetFloatParameterRegex ( CultureInfo . InvariantCulture ) ;
2828 public static readonly string [ ] FloatParameterRegexpsEn = { FloatParameterRegexEn } ;
2929
30- public const string WordParameterName = "Word " ;
30+ public const string WordParameterName = "word " ;
3131 public const string WordParameterRegex = "[^\\ s]+" ;
3232 public static readonly string [ ] WordParameterRegexps = { WordParameterRegex } ;
3333
You can’t perform that action at this time.
0 commit comments