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,