Skip to content

Commit 40c7303

Browse files
lonrephilwebb
authored andcommitted
Fix typo in reference docs
(cherry picked from 5549bd9)
1 parent c00782a commit 40c7303

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reference/docbook/expressions.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ Boolean b = simple.booleanList.get(0);
458458

459459
@Autowired
460460
public void configure(MovieFinder movieFinder,
461-
@Value("#{ systemProperties['user.region'] }"} String defaultLocale) {
461+
@Value("#{ systemProperties['user.region'] }") String defaultLocale) {
462462
this.movieFinder = movieFinder;
463463
this.defaultLocale = defaultLocale;
464464
}
@@ -474,7 +474,7 @@ Boolean b = simple.booleanList.get(0);
474474

475475
@Autowired
476476
public MovieRecommender(CustomerPreferenceDao customerPreferenceDao,
477-
@Value("#{systemProperties['user.country']}"} String defaultLocale) {
477+
@Value("#{systemProperties['user.country']}") String defaultLocale) {
478478
this.customerPreferenceDao = customerPreferenceDao;
479479
this.defaultLocale = defaultLocale;
480480
}

0 commit comments

Comments
 (0)