Polishing.

Slightly tweak wording.

See #2283
Original pull request: #2285
This commit is contained in:
Mark Paluch
2021-02-09 11:53:13 +01:00
parent 5a1a7ff428
commit 5e702a8c8a

View File

@@ -4,8 +4,8 @@
[[auditing.basics]]
== Basics
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.
Additionally auditing has to be enabled either via Java or XML configuration which ensures required infrastructure components get registered.
Please refer to the store specific section for configuration samples.
Additionally, auditing has to be enabled either through Annotation configuration or XML configuration to register the required infrastructure components.
Please refer to the store-specific section for configuration samples.
[NOTE]
====
@@ -43,7 +43,6 @@ Auditing metadata does not necessarily need to live in the root level entity but
----
class Customer {
@Embedded
private AuditMetadata auditingMetadata;
// … further properties omitted