From 4b5549ba1c082c1bc2733a2c2b5e6f58b054718c Mon Sep 17 00:00:00 2001 From: Xeonacid Date: Sat, 21 Dec 2024 21:20:08 +0800 Subject: [PATCH] [examples] Remove redundant slash --- .../shared-no-tto/sources/shared_cash_register.move | 2 +- .../shared-with-tto/sources/shared_cash_register.move | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/move/transfer-to-object/shared-no-tto/sources/shared_cash_register.move b/examples/move/transfer-to-object/shared-no-tto/sources/shared_cash_register.move index 3fe6b70064c39..776ae267243aa 100644 --- a/examples/move/transfer-to-object/shared-no-tto/sources/shared_cash_register.move +++ b/examples/move/transfer-to-object/shared-no-tto/sources/shared_cash_register.move @@ -76,7 +76,7 @@ public fun update_authorized_individuals( /// Process a payment that has been made, removing it from the register and /// returning the coin that can then be combined or sent elsewhere by the authorized individual. -/// Payments can only be processed by either an account in the / `authorized_individuals` set or by the owner of the cash register. +/// Payments can only be processed by either an account in the `authorized_individuals` set or by the owner of the cash register. public fun process_payment( register: &mut CashRegister, payment_id: u64, diff --git a/examples/move/transfer-to-object/shared-with-tto/sources/shared_cash_register.move b/examples/move/transfer-to-object/shared-with-tto/sources/shared_cash_register.move index 0c039f1494d35..aaa1627dc67a6 100644 --- a/examples/move/transfer-to-object/shared-with-tto/sources/shared_cash_register.move +++ b/examples/move/transfer-to-object/shared-with-tto/sources/shared_cash_register.move @@ -79,7 +79,7 @@ public fun update_authorized_individuals( /// Process a payment that has been made, removing it from the register and /// returning the coin that can then be combined or sent elsewhere by the authorized individual. -/// Payments can only be processed by either an account in the / `authorized_individuals` set or by the owner of the cash register. +/// Payments can only be processed by either an account in the `authorized_individuals` set or by the owner of the cash register. public fun process_payment( register: &mut CashRegister, payment_ticket: Receiving,