Skip to content

Commit

Permalink
Update Doxygen workflow, fix spelling in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rmisev committed Oct 23, 2023
1 parent 74c2dfc commit 0b7d795
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
pull_request:

jobs:
deploy:
Expand All @@ -17,6 +18,7 @@ jobs:
- uses: mattnotmitt/doxygen-action@edge
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: upa-url/docs
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ find_package(upa REQUIRED)
target_link_libraries(exe-target PRIVATE upa::url)
```

#### Embeding
#### Embedding

The entire library source tree can be placed in subdirectory (say `url/`) of your project and then included in it with `add_subdirectory()`:
```cmake
Expand All @@ -57,7 +57,7 @@ add_subdirectory(url)
target_link_libraries(exe-target PRIVATE upa::url)
```

#### Embeding with FetchContent
#### Embedding with FetchContent

```cmake
include(FetchContent)
Expand Down
2 changes: 1 addition & 1 deletion include/upa/url_host.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class url_host {
///
/// Throws @a url_error exception on parse error.
///
/// @param[in] args Host string to parse
/// @param[in] str Host string to parse
template <class StrT, enable_if_str_arg_t<StrT> = 0>
explicit url_host(StrT&& str) {
host_out out(*this);
Expand Down

0 comments on commit 0b7d795

Please sign in to comment.