Skip to content

Commit 7655244

Browse files
eshanrnhgitbook-bot
authored andcommitted
GITBOOK-5: Removed extra words
1 parent 9f7e7c4 commit 7655244

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

15/umbraco-commerce/SUMMARY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@
8484
* [Dynamic Rate Shipping](reference/shipping/dynamic-rate-shipping.md)
8585
* [Realtime Rate Shipping](reference/shipping/realtime-rate-shipping.md)
8686
* [Taxes](reference/taxes/README.md)
87-
* [Fixed Tax Rates](reference/taxes/fixed-tax-rates.md)
88-
* [Calculated Tax Rates](reference/taxes/calculated-tax-rates.md)
87+
* [Fixed Tax Rates](reference/taxes/fixed-tax-rates.md)
88+
* [Calculated Tax Rates](reference/taxes/calculated-tax-rates.md)
8989
* [Storefront API](reference/storefront-api/README.md)
9090
* [Endpoints](reference/storefront-api/endpoints/README.md)
9191
* [Order](reference/storefront-api/endpoints/order.md)
@@ -100,7 +100,7 @@
100100
* [Content](reference/storefront-api/endpoints/content.md)
101101
* [Management API](reference/management-api/README.md)
102102
* [Go behind the scenes](reference/go-behind-the-scenes.md)
103-
* [Telemetry](reference/telemetry/README.md)
103+
* [Telemetry](reference/telemetry.md)
104104

105105
## Tutorials
106106

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Telemetry
2+

15/umbraco-commerce/release-notes/v15.0.0-rc.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
2-
description: >-
3-
Umbraco Commerce v15.0.0-rc release notes.
2+
description: Umbraco Commerce v15.0.0-rc release notes.
43
---
54

6-
# Umbraco Commerce v15.0.0-rc
5+
# v15.0.0-Rc
76

8-
Umbraco Commerce v15.0.0-rc is the initial release of Umbraco Commerce for Umbraco CMS v15. Because of
7+
Umbraco Commerce v15.0.0-rc is the initial release of Umbraco Commerce for Umbraco CMS v15.
98

109
## Key Takeaways
1110

12-
* Everything is now [async](#async).
13-
* [Storefront API](#storefront-api) aligned with Management API
14-
* A number of [Umbraco v15 updates](#umbraco-v15-updates).
11+
* Everything is now [async](v15.0.0-rc.md#async).
12+
* [Storefront API](v15.0.0-rc.md#storefront-api) aligned with Management API
13+
* A number of [Umbraco v15 updates](v15.0.0-rc.md#umbraco-v15-updates).
1514

1615
## Async
1716

1817
The key focus of this release is the move to a fully asynchronous code base. To reduce the maintenance burden, the decision was made to go fully async without maintaining backward compatibility. This will therefore require code updates to use the new async methods.
1918

2019
### Previous behavior
20+
2121
Previously all C# API's were synchronous and thus blocking by nature.
2222

2323
```csharp
@@ -41,7 +41,8 @@ public class MyNotification : NotificationEventHandlerBase<OrderFinalizedNotific
4141
```
4242

4343
### New behavior
44-
All APIs are now asynchronous and thus are suffixed with Async and return a Task<T> result.
44+
45+
All APIs are now asynchronous and thus are suffixed with Async and return a Task result.
4546

4647
```csharp
4748
// Fluent API example

0 commit comments

Comments
 (0)