Skip to content

Commit 31dd06c

Browse files
laxerhdCOM8
authored andcommitted
Fixed errors in index.md
1 parent 91e33c7 commit 31dd06c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ And here's [less functional, more complicated code, without cpr](https://gist.gi
3333
C++ Requests currently supports:
3434
3535
* Custom headers
36-
* Url encoded parameters
37-
* Url encoded POST values
36+
* URL-encoded parameters
37+
* URL-encoded POST values
3838
* Multipart form POST upload
3939
* File POST upload
4040
* Basic authentication
@@ -86,7 +86,7 @@ target_link_libraries(your_target_name PRIVATE cpr::cpr)
8686
```
8787

8888
That should do it!
89-
There's no need to handle `libcurl` yourself. All dependencies are taken care of for you.
89+
There's no need to handle `libcurl` yourself. All dependencies are taken care of for you.
9090
All of this can be found in an example [**here**](https://github.com/libcpr/example-cmake-fetch-content).
9191

9292
#### find_package():
@@ -159,7 +159,7 @@ The only explicit requirements are:
159159
* a `C++17` compatible compiler such as Clang or GCC. The minimum required version of GCC is unknown, so if anyone has trouble building this library with a specific version of GCC, do let us know
160160
* in case you only have a `C++11` compatible compiler available, all versions below cpr 1.9.x are for you. The 1.10.0 release of cpr switches to `C++17` as a requirement.
161161
* If you would like to perform https requests `OpenSSL` and its development libraries are required.
162-
* If you do not use the build in version of [curl](https://github.com/curl/curl) but instead use your systems version, make sure you use a version `>= 7.64.0`. Lower versions are not supported. This means you need Debian `>= 10` or Ubuntu `>= 20.04 LTS`.
162+
* If you do not use the built-in version of [curl](https://github.com/curl/curl) but instead use your systems version, make sure you use a version `>= 7.64.0`. Lower versions are not supported. This means you need Debian `>= 10` or Ubuntu `>= 20.04 LTS`.
163163

164164
### Building cpr - Using vcpkg
165165

@@ -196,7 +196,7 @@ Now to make `cpr` available to the project, make a `subprojects` directory and i
196196
meson wrap install cpr
197197
```
198198

199-
It creates a meson wrap file in `subprojects/cpr.wrap`, with that we need to it as dependecy in the `meson.build` file:
199+
This creates a meson wrap file in `subprojects/cpr.wrap`. We then need to add it as a dependency in the `meson.build` file:
200200

201201
```conf
202202
project('cpr-test', 'cpp',

0 commit comments

Comments
 (0)