-
-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clarify language in range
documentation
#908
Comments
can i be assigned to this issue? |
Can you assign this issue to me? |
my good first issue. pls assign it to me. |
There is no need for an issue to be assigned to anyone, just work on it and create a PR as that's how OS projects on GitHub work. |
I have raised a PR (supabase/supabase#30989) to address the documentation issue mentioned here. The documentation now uses consistent parameter names ( |
@RaghavgitGrover please follow links in issues before creating new PRs. The OP opened a PR already and I stated what needs to happen in order for their PR to get merged in. supabase/supabase#28781 (comment) |
Improve documentation
Link
https://supabase.com/docs/reference/python/range
Describe the problem
The python range documentation has the following issues:
start
andend
while the description usesfrom
andto
from
) and ending at the offset (from + to
)". This is incorrect as the end index is justto
. E.g. range(20, 30) returns 11 items (20-30), not 51 items (20-20+30)Describe the improvement
from
andto
in parameter list. This is aligned with the documentation for other languages.to
Additional context
PR supabase/supabase#28781
relevant implementation
The text was updated successfully, but these errors were encountered: