From 136b02b7c873cff34dad4ddf20bae070a1966b1d Mon Sep 17 00:00:00 2001 From: Isaac Brodsky Date: Sun, 3 Nov 2024 15:43:40 -0700 Subject: [PATCH] fix integer/ string function names in docs for python --- website/docs/api/inspection.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/api/inspection.mdx b/website/docs/api/inspection.mdx index 40b7844da..ce82bf888 100644 --- a/website/docs/api/inspection.mdx +++ b/website/docs/api/inspection.mdx @@ -198,7 +198,7 @@ The H3 JavaScript binding supports only the string representation of an H3 index ```py -h3.string_to_h3(h) +h3.str_to_int(h) ``` @@ -258,7 +258,7 @@ The H3 JavaScript binding supports only the string representation of an H3 index ```py -h3.h3_to_string(h) +h3.int_to_str(h) ```