summaryrefslogtreecommitdiff
path: root/shared-bindings/fontio/BuiltinFont.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/fontio/BuiltinFont.c')
-rw-r--r--shared-bindings/fontio/BuiltinFont.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/fontio/BuiltinFont.c b/shared-bindings/fontio/BuiltinFont.c
index cc4d50fe2..6d6a39818 100644
--- a/shared-bindings/fontio/BuiltinFont.c
+++ b/shared-bindings/fontio/BuiltinFont.c
@@ -76,7 +76,7 @@ STATIC mp_obj_t fontio_builtinfont_obj_get_bounding_box(mp_obj_t self_in) {
MP_DEFINE_CONST_FUN_OBJ_1(fontio_builtinfont_get_bounding_box_obj, fontio_builtinfont_obj_get_bounding_box);
-//| def get_glyph(self, codepoint: int) -> fontio.Glyph:
+//| def get_glyph(self, codepoint: int) -> Glyph:
//| """Returns a `fontio.Glyph` for the given codepoint or None if no glyph is available."""
//| ...
//|