From f8ae9058cfc7dedc72166483e9728f9da77cdcfd Mon Sep 17 00:00:00 2001 From: Luke aka SwissalpS <161979+SwissalpS@users.noreply.github.com> Date: Sun, 4 Aug 2024 15:12:07 +0200 Subject: [PATCH] Replace "Etc." with "E.g." in `api.md` (#374) --- technic/doc/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/technic/doc/api.md b/technic/doc/api.md index ad1bdf55..298594bf 100644 --- a/technic/doc/api.md +++ b/technic/doc/api.md @@ -63,7 +63,7 @@ Power tool API * `technic_get_charge = function(itemstack) ...`: * Callback will be used to get itemstack charge and max\_charge. * Have to return values `charge, max_charge`. - * Etc. `local charge, maxcharge = itemdef.technic_get_charge(itemstack)`. + * E.g. `local charge, maxcharge = itemdef.technic_get_charge(itemstack)`. * Defaults to `technic.get_RE_charge` which handles tool wear and charge values. * `technic_set_charge = function(itemstack, charge) ...`: * Callback will be used to set itemstack charge.