From cb22f58de59df9d7c8d0f685a54ff0aba132c764 Mon Sep 17 00:00:00 2001 From: Tyler Fox Date: Sun, 16 Nov 2025 15:06:34 -0800 Subject: [PATCH] Clarify Point.column documentation Updated the documentation for Point.column to clarify that the column is measured in bytes. --- tree_sitter/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tree_sitter/__init__.py b/tree_sitter/__init__.py index a3fbe847..29701f97 100644 --- a/tree_sitter/__init__.py +++ b/tree_sitter/__init__.py @@ -23,7 +23,7 @@ Point.__doc__ = "A position in a multi-line text document, in terms of rows and columns." Point.row.__doc__ = "The zero-based row of the document." -Point.column.__doc__ = "The zero-based column of the document." +Point.column.__doc__ = "The zero-based column of the document. Measured in bytes" class QueryPredicate(_Protocol):