Skip to content

Commit

Permalink
Merge pull request #28197 from rsvoboda/fix.28196
Browse files Browse the repository at this point in the history
Use single quotes to fix rendering in the all-config guide
  • Loading branch information
geoand authored Sep 27, 2022
2 parents 42b8528 + 3b8021d commit 6234358
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class HibernateEnversBuildTimeConfigPersistenceUnit {
*
* @asciidoclet
*/
@ConfigItem(defaultValueDocumentation = "`true` if Hibernate ORM is enabled; `false` otherwise")
@ConfigItem(defaultValueDocumentation = "'true' if Hibernate ORM is enabled; 'false' otherwise")
public Optional<Boolean> active = Optional.empty();

}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class HibernateOrmRuntimeConfigPersistenceUnit {
*
* @asciidoclet
*/
@ConfigItem(defaultValueDocumentation = "`true` if Hibernate ORM is enabled; `false` otherwise")
@ConfigItem(defaultValueDocumentation = "'true' if Hibernate ORM is enabled; 'false' otherwise")
public Optional<Boolean> active = Optional.empty();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class HibernateSearchElasticsearchRuntimeConfigPersistenceUnit {
*
* @asciidoclet
*/
@ConfigItem(defaultValueDocumentation = "`true` if Hibernate Search is enabled; `false` otherwise")
@ConfigItem(defaultValueDocumentation = "'true' if Hibernate Search is enabled; 'false' otherwise")
public Optional<Boolean> active;

/**
Expand Down

0 comments on commit 6234358

Please sign in to comment.