From 461a26a8bba4edc97f8685e48db5a51ba79d06a9 Mon Sep 17 00:00:00 2001 From: Howon Lee Date: Fri, 10 Jan 2025 19:11:51 -0800 Subject: [PATCH] Docstrings supports more languages (#190) support some more languages Co-authored-by: Howon Lee --- docs/finishing-touches/docstrings.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/finishing-touches/docstrings.md b/docs/finishing-touches/docstrings.md index 1332df86..dfb33117 100644 --- a/docs/finishing-touches/docstrings.md +++ b/docs/finishing-touches/docstrings.md @@ -54,28 +54,28 @@ The presence of an unsupported software forge in this list does not constitute a The checked languages are supported: -- [ ] Bash -- [ ] C +- [x] Bash +- [x] C - [x] C++ -- [ ] C# +- [x] C# - [x] Elixir - [x] Go - [ ] Haskell - [x] Java - [x] JavaScript -- [ ] Kotlin -- [ ] Lua -- [ ] Php +- [x] Kotlin +- [x] Lua +- [x] Php - [x] Python -- [ ] React TypeScript +- [x] React TypeScript - [x] Ruby -- [ ] Rust +- [x] Rust - [ ] Scala -- [ ] Swift +- [x] Swift - [x] TypeScript The presence of an unsupported language in this list does not constitute a commitment to support it in the future. Remember that the docstrings feature is in [beta](/early-access#beta). :::note -In the case of JavaScript and TypeScript, there are tons of ways to declare functions. At the moment, we only support the keyword `function` at the top level. +In the case of JavaScript and TypeScript and the React versions of both, there are tons of ways to declare functions. At the moment, we only support the keyword `function` at the top level. :::