Clean up readme, and default config

This commit is contained in:
Alexander R.
2026-07-21 22:51:28 +00:00
parent edfcc872d9
commit 0b7259a011
8 changed files with 43 additions and 35 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ class HandbookExampleRequest(BaseModel):
@app.get("/handbook/catalog/{language}")
def get_handbook_catalog_endpoint(language: str):
"""Returns W3Schools-style syntax handbook catalog (functions & subjects) for specified language."""
"""Returns syntax handbook catalog (functions & subjects) for specified language."""
catalog = handbook_service.get_catalog(language)
return {"language": language, "catalog": catalog}