Browse Source

Fix typo in reference docs

pull/328/merge
Lonre Wang 13 years ago committed by Phillip Webb
parent
commit
5549bd909e
  1. 4
      src/reference/docbook/expressions.xml

4
src/reference/docbook/expressions.xml

@ -458,7 +458,7 @@ Boolean b = simple.booleanList.get(0);
@Autowired @Autowired
public void configure(MovieFinder movieFinder, public void configure(MovieFinder movieFinder,
@Value("#{ systemProperties['user.region'] }"} String defaultLocale) { @Value("#{ systemProperties['user.region'] }") String defaultLocale) {
this.movieFinder = movieFinder; this.movieFinder = movieFinder;
this.defaultLocale = defaultLocale; this.defaultLocale = defaultLocale;
} }
@ -474,7 +474,7 @@ Boolean b = simple.booleanList.get(0);
@Autowired @Autowired
public MovieRecommender(CustomerPreferenceDao customerPreferenceDao, public MovieRecommender(CustomerPreferenceDao customerPreferenceDao,
@Value("#{systemProperties['user.country']}"} String defaultLocale) { @Value("#{systemProperties['user.country']}") String defaultLocale) {
this.customerPreferenceDao = customerPreferenceDao; this.customerPreferenceDao = customerPreferenceDao;
this.defaultLocale = defaultLocale; this.defaultLocale = defaultLocale;
} }

Loading…
Cancel
Save