Skip to content

Commit 710ecb3

Browse files
committed
Add module docstring
1 parent ef31b67 commit 710ecb3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mypyc/lib-rt/vecs/librt_vecs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ static PyModuleDef_Slot librt_vecs_module_slots[] = {
903903
static PyModuleDef vecsmodule = {
904904
.m_base = PyModuleDef_HEAD_INIT,
905905
.m_name = "vecs",
906-
.m_doc = "vecs doc",
906+
.m_doc = "This module implements the vec type and related functionality.",
907907
.m_size = 0,
908908
.m_methods = VecsMethods,
909909
.m_slots = librt_vecs_module_slots,

0 commit comments

Comments
 (0)