From b726a2274c7a4fe96bdd55b6061e05d0e056d38c Mon Sep 17 00:00:00 2001 From: bohd4nx Date: Mon, 16 Mar 2026 19:00:55 +0200 Subject: [PATCH] feat: update bug report template to reflect terminology change from "gift" to "purchase" for Stars --- .github/ISSUE_TEMPLATE/bug.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index afc89fd..8006d94 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -45,7 +45,7 @@ body: attributes: label: Expected behavior description: Describe what you expected to happen. - placeholder: e.g. Stars should be gifted and StarsResult returned. + placeholder: e.g. Stars should be purchased and StarsResult returned. validations: required: true @@ -63,7 +63,7 @@ body: description: Minimal steps that reproduce the issue. placeholder: | 1. Create FragmentClient with valid credentials - 2. Call gift_stars("@username", amount=100) + 2. Call purchase_stars("@username", amount=100) 3. See error validations: required: true @@ -78,7 +78,7 @@ body: async def main(): client = FragmentClient(...) - result = await client.gift_stars("@username", amount=100) + result = await client.purchase_stars("@username", amount=100) asyncio.run(main()) render: python