From e68c3d6a8d4af3d91088548536b9c866d3dbacd9 Mon Sep 17 00:00:00 2001 From: Harri Porten Date: Sat, 9 Mar 2024 20:42:05 +0100 Subject: [PATCH] Fixed some harmless typos. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 50b83715c..ab6a50431 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ ## Description -Crow is a C++ framework for creating HTTP or Websocket web services. It uses routing similar to Python's Flask which makes it easy to use. It is also extremely fast, beating multiple existing C++ frameworks as well as non C++ frameworks. +Crow is a C++ framework for creating HTTP or Websocket web services. It uses routing similar to Python's Flask which makes it easy to use. It is also extremely fast, beating multiple existing C++ frameworks as well as non-C++ frameworks. ### Features - - Easy Routing (similar to flask). - - Type-safe Handlers. + - Easy Routing (similar to Flask). + - Type-safe handlers. - Blazingly fast (see [this benchmark](https://github.com/ipkn/crow-benchmark) and [this benchmark](https://github.com/guteksan/REST-CPP-benchmark)). - Built in JSON support. - [Mustache](http://mustache.github.io/) based templating library (`crow::mustache`). @@ -77,7 +77,7 @@ CROW_ROUTE(app,"/hello/") ``` Handler arguments type check at compile time ```cpp -// Compile error with message "Handler type is mismatched with URL paramters" +// Compile error with message "Handler type is mismatched with URL parameters" CROW_ROUTE(app,"/another/") ([](int a, int b){ return crow::response(500);