From a21fb0602c20c751a1e486fddda4e77ca26055ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Fri, 12 Jun 2020 14:58:13 +0300 Subject: [PATCH] Rename Clock to Timing. --- docs/en/AspNet-Boilerplate-Migration-Guide.md | 2 +- docs/en/Clock.md | 3 --- docs/en/Timing.md | 3 +++ docs/en/docs-nav.json | 4 ++++ 4 files changed, 8 insertions(+), 4 deletions(-) delete mode 100644 docs/en/Clock.md create mode 100644 docs/en/Timing.md 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" } ] },