diff --git a/docs/Migration Guide.md b/docs/Migration Guide.md index 7a0e662..3133a2f 100644 --- a/docs/Migration Guide.md +++ b/docs/Migration Guide.md @@ -93,3 +93,5 @@ var closePrice = kline.CommonClose; var kline = await binanceClient.SpotApi.ComonSpotClient.GetKlinesAysnc(/*params*/); var closePrice = kline.ClosePrice; ``` + +For more details on the interfaces see [Common interfaces](interfaces.html) \ No newline at end of file diff --git a/docs/Orderbooks.md b/docs/Orderbooks.md index e39e393..32115f3 100644 --- a/docs/Orderbooks.md +++ b/docs/Orderbooks.md @@ -38,7 +38,7 @@ Note that these will return copies of the internally synced lists when accessing When you need both lists in sync you should access the `Book` property. `var (currentBidList, currentAskList) = book.Book;` -Because copies of the lists are made when accessing the bids/asks properties the performance impact should be considered. When only the current best ask/bid info is needed you can access the `BestOffers` property. +Because copies of the lists are made when accessing the bids/asks properties the performance impact should be considered. When only the current best ask/bid info is needed you can access the `BestOffers` property. `var (bestBid, bestAsk) = book.BestOffers;` ### Events