Skip to content

Commit af76b02

Browse files
committedFeb 9, 2021
Polishing.
Slightly tweak wording. See #2283 Original pull request: #2285
1 parent 1c4fd73 commit af76b02

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎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)
Please sign in to comment.