diff --git a/content/_code-samples/trade-in-the-decentralized-exchange/js/trade-in-the-dex.js b/content/_code-samples/trade-in-the-decentralized-exchange/js/trade-in-the-dex.js index 3bf139aeec..7f808f3fc6 100644 --- a/content/_code-samples/trade-in-the-decentralized-exchange/js/trade-in-the-dex.js +++ b/content/_code-samples/trade-in-the-decentralized-exchange/js/trade-in-the-dex.js @@ -37,7 +37,7 @@ async function main() { // 25 TST * 10 XRP per TST * 15% financial exchange (FX) cost value: xrpl.xrpToDrops(25*10*1.15) } - // "Quality" is defined as TakerPays ÷ TakerGets. The lower the "quality" + // "Quality" is defined as TakerPays / TakerGets. The lower the "quality" // number, the better the proposed exchange rate is for the taker. // The quality is rounded to a number of significant digits based on the // issuer's TickSize value (or the lesser of the two for token-token trades.) diff --git a/content/_code-samples/trade-in-the-decentralized-exchange/py/trade-in-the-dex.py b/content/_code-samples/trade-in-the-decentralized-exchange/py/trade-in-the-dex.py index c76e44f0c1..ece46e8ae4 100644 --- a/content/_code-samples/trade-in-the-decentralized-exchange/py/trade-in-the-dex.py +++ b/content/_code-samples/trade-in-the-decentralized-exchange/py/trade-in-the-dex.py @@ -53,7 +53,7 @@ async def main() -> int: "value": xrp_to_drops(25 * 10 * 1.15), } - # "Quality" is defined as TakerPays ÷ TakerGets. The lower the "quality" + # "Quality" is defined as TakerPays / TakerGets. The lower the "quality" # number, the better the proposed exchange rate is for the taker. # The quality is rounded to a number of significant digits based on the # issuer's TickSize value (or the lesser of the two for token-token trades.)