Skip to content

Commit a16ce61

Browse files
committed
Polishing.
Slightly tweak wording. See #2283 Original pull request: #2285
1 parent aa6f660 commit a16ce61

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: src/main/asciidoc/auditing.adoc

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
[[auditing.basics]]
55
== Basics
66
Spring Data provides sophisticated support to transparently keep track of who created or changed an entity and when the change happened. To benefit from that functionality, you have to equip your entity classes with auditing metadata that can be defined either using annotations or by implementing an interface.
7-
Additionally auditing has to be enabled either via Java or XML configuration which ensures required infrastructure components get registered.
8-
Please refer to the store specific section for configuration samples.
7+
Additionally, auditing has to be enabled either through Annotation configuration or XML configuration to register the required infrastructure components.
8+
Please refer to the store-specific section for configuration samples.
99

1010
[NOTE]
1111
====
@@ -43,7 +43,6 @@ Auditing metadata does not necessarily need to live in the root level entity but
4343
----
4444
class Customer {
4545
46-
@Embedded
4746
private AuditMetadata auditingMetadata;
4847
4948
// … further properties omitted

0 commit comments

Comments
 (0)