From aeef48ae970554cd579583a2f006998a9020e526 Mon Sep 17 00:00:00 2001 From: Timothy <6560631+TimoPtr@users.noreply.github.com> Date: Wed, 16 Apr 2025 09:47:19 +0200 Subject: [PATCH] Apply AI suggestion --- docs/android/codestyle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/android/codestyle.md b/docs/android/codestyle.md index b500a60d..e40fe09b 100644 --- a/docs/android/codestyle.md +++ b/docs/android/codestyle.md @@ -108,7 +108,7 @@ if (value == SUPER_IMPORTANT_THRESHOLD) { ### Organizing constants -General rule is if the constant is exposed outside of the file it needs to be properly be identifiable when imported either by its name or by its parents name. +As a general rule, if a constant is exposed outside the file, it needs to be easily identifiable when imported, either by its own name or by its parent’s name. #### Within a dedicated file