Use get instead of template get in REAMD.md and docs in non-template context (#4846)

Signed-off-by: Andy Choi <ccpong516@gmail.com>
This commit is contained in:
Andy Choi
2025-10-30 17:23:04 +08:00
committed by GitHub
parent a6a92c19bf
commit cda9c1e3bd
23 changed files with 81 additions and 81 deletions
@@ -187,7 +187,7 @@ conversions with calls to [`get`](../api/basic_json/get.md), [`get_to`](../api/b
```cpp
nlohmann::json j = "Hello, world!";
auto s = j.template get<std::string>();
auto s = j.get<std::string>();
```
=== "Future-proof (alternative)"