Open nanewalt opened 3 months ago
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.
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