Skip to content

Commit 905f2a5

Browse files
committed
docs minor improvements
1 parent 8991f2b commit 905f2a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

TonLibDotNet/Extensions/TonClientCellsGramsExtensions.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ amount of Grams.
2222
/// <summary>
2323
/// Load 'coins' amount as 'long' value.
2424
/// </summary>
25-
/// <remarks>It's safe to load coins into 'long' while total TON supply is unchanged (5*10^18), details are in https://t.me/tondev/122940.</remarks>
25+
/// <remarks>It's safe to load coins into 'long' while total TON supply is unchanged (5*10^18), details are in <see href="https://t.me/tondev/122940"/>.</remarks>
2626
/// <exception cref="InvalidOperationException">When actual stored value is larger than 'long' (it's not amount of TON coins in that case).</exception>
2727
/// <seealso href="https://t.me/tondev/122940">Explanation (in RUS) why 120bits are used to store 63bits-max values.</seealso>
2828
public static long LoadCoins(this Slice slice)
@@ -47,7 +47,7 @@ public static long LoadCoins(this Slice slice)
4747
/// <summary>
4848
/// Load 'coins' amount as 'ulong' value. Use this if you prefer 'ulong' over 'long' in your app.
4949
/// </summary>
50-
/// <remarks>It's safe to load coins into 'long' while total TON supply is unchanged (5*10^18), details are in https://t.me/tondev/122940.</remarks>
50+
/// <remarks>It's safe to load coins into 'long' while total TON supply is unchanged (5*10^18), details are in <see href="https://t.me/tondev/122940"/>.</remarks>
5151
/// <exception cref="InvalidOperationException">When actual stored value is larger than 'ulong' (it's not amount of TON coins in that case).</exception>
5252
/// <seealso href="https://t.me/tondev/122940">Explanation (in RUS) why 120bits are used to store 63bits-max values.</seealso>
5353
public static ulong LoadCoinsToULong(this Slice slice)
@@ -65,7 +65,7 @@ public static ulong LoadCoinsToULong(this Slice slice)
6565
/// <summary>
6666
/// Load 'coins' amount as 'BigInteger' value.
6767
/// </summary>
68-
/// <remarks>TON supply (5*10^18) fits into 'long' value (details are in https://t.me/tondev/122940), so this function may be used to load other (jetton?) amounts.</remarks>
68+
/// <remarks>TON supply (5*10^18) fits into 'long' value (details are in <see href="https://t.me/tondev/122940"/>), so this function may be used to load other (jetton?) amounts.</remarks>
6969
public static BigInteger LoadCoinsToBigInt(this Slice slice)
7070
{
7171
Span<byte> bytes = stackalloc byte[15];
@@ -86,7 +86,7 @@ public static BigInteger LoadCoinsToBigInt(this Slice slice)
8686
/// <summary>
8787
/// Store 'coins' amount given by 'long' value (negative values are not allowed).
8888
/// </summary>
89-
/// <remarks>It's safe to store coins as 'long' while total TON supply is unchanged (5*10^18), details are in https://t.me/tondev/122940.</remarks>
89+
/// <remarks>It's safe to store coins as 'long' while total TON supply is unchanged (5*10^18), details are in <see href="https://t.me/tondev/122940"/>.</remarks>
9090
/// <exception cref="ArgumentOutOfRangeException">When 'value' is negative.</exception>
9191
/// <seealso href="https://t.me/tondev/122940">Explanation (in RUS) why 120bits are used to store 63bits-max values.</seealso>
9292
public static CellBuilder StoreCoins(this CellBuilder builder, long value)
@@ -109,7 +109,7 @@ public static CellBuilder StoreCoins(this CellBuilder builder, long value)
109109
/// <summary>
110110
/// Store 'coins' amount given by 'ulong' value. Use this if you prefer 'ulong' over 'long' in your app.
111111
/// </summary>
112-
/// <remarks>It's safe to store coins as 'long' while total TON supply is unchanged (5*10^18), details are in https://t.me/tondev/122940.</remarks>
112+
/// <remarks>It's safe to store coins as 'long' while total TON supply is unchanged (5*10^18), details are in <see href="https://t.me/tondev/122940"/>.</remarks>
113113
/// <seealso href="https://t.me/tondev/122940">Explanation (in RUS) why 120bits are used to store 63bits-max values.</seealso>
114114
public static CellBuilder StoreCoins(this CellBuilder builder, ulong value)
115115
{

0 commit comments

Comments
 (0)