From 89c6e4b56f2ac8a689417d89747363afac6ad93b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 20 Dec 2022 17:11:25 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Add=20note=20about=20sections,?= =?UTF-8?q?=20achievable=20with=20`extra`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typing_doc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typing_doc.md b/typing_doc.md index 666470b7d..6cea846e3 100644 --- a/typing_doc.md +++ b/typing_doc.md @@ -183,7 +183,7 @@ Other possible features that could be added in the future, probably in the form * `**kwargs`: some form of documenting additional keyword arguments defined with `**kwargs` instead of using the independent parameters in the function/callable signature. * Generators: a way to document the types of values yielded by a generator. * Warnings: a way to document the possible warnings that a function or method can create. -* Section titles: a way to separate groups of parameters into sections (or tags), mainly for documentation purposes, if that was included, it could make sense to also support a way to define the order of sections and their descriptions. +* Section titles: a way to separate groups of parameters into sections (or tags), mainly for documentation purposes, if that was included, it could make sense to also support a way to define the order of sections and their descriptions. Although this might be achievable using the current `extra` parameter for extensions. ### Duplicated Effort