diff --git a/docs/en/AspNet-Boilerplate-Migration-Guide.md b/docs/en/AspNet-Boilerplate-Migration-Guide.md index 39dd01eaa4..9929b6d24d 100644 --- a/docs/en/AspNet-Boilerplate-Migration-Guide.md +++ b/docs/en/AspNet-Boilerplate-Migration-Guide.md @@ -595,7 +595,7 @@ ABP Framework separates it and provides the setting management module (pre-added ASP.NET Boilerplate has a static `Clock` service ([see](https://aspnetboilerplate.com/Pages/Documents/Timing)) which is used to abstract the `DateTime` kind, so you can easily switch between Local and UTC times. You don't inject it, but just use the `Clock.Now` static method to obtain the current time. -ABP Framework has the `IClock` service ([see](Clock.md)) which has a similar goal, but now you need to inject it whenever you need it. +ABP Framework has the `IClock` service ([see](Timing.md)) which has a similar goal, but now you need to inject it whenever you need it. ### Event Bus diff --git a/docs/en/Clock.md b/docs/en/Clock.md deleted file mode 100644 index 46ef1235e0..0000000000 --- a/docs/en/Clock.md +++ /dev/null @@ -1,3 +0,0 @@ -# Clock - -TODO \ No newline at end of file diff --git a/docs/en/Timing.md b/docs/en/Timing.md new file mode 100644 index 0000000000..0fe80ee99b --- /dev/null +++ b/docs/en/Timing.md @@ -0,0 +1,3 @@ +# Timing + +TODO \ No newline at end of file diff --git a/docs/en/docs-nav.json b/docs/en/docs-nav.json index d384902edf..6efda6af9d 100644 --- a/docs/en/docs-nav.json +++ b/docs/en/docs-nav.json @@ -216,6 +216,10 @@ { "text": "GUID Generation", "path": "Guid-Generation.md" + }, + { + "text": "Timing", + "path": "Timing.md" } ] },