Skip to content

Commit 42e68fc

Browse files
authored
Merge pull request #403 from elbeno/small-fixes-design-docs
📝 Small fixes for documentation
2 parents 90a2674 + e4c83f8 commit 42e68fc

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

docs/design/tuple.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For example, it can't use formatted `static_assert`s (because they make use of
2525
`tuplelike` is modelled by `stdx::tuple` and `stdx::indexed_tuple` only.
2626

2727
`has_tuple_protocol` means that a type models the `get` protocol. This applies
28-
to much more: `stdx::tuple` but also `std::tuple`, `std::pair`, std::array`,
28+
to much more: `stdx::tuple` but also `std::tuple`, `std::pair`, `std::array`,
2929
etc.
3030

3131
## `one_of`

docs/header_graph.mmd

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ flowchart BT
6161
bitset --> ct_string
6262
panic(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/panic.hpp">panic.hpp</a>)
6363
panic --> ct_string
64-
A(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/env.hpp">env.hpp</a><br><a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/static_assert.hpp">static_assert.hpp</a>)
65-
A --> ct_string
64+
env(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/env.hpp">env.hpp</a>)
65+
env --> ct_string
6666
tuple_algorithms(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/tuple_algorithms.hpp">tuple_algorithms.hpp</a>)
6767
tuple_algorithms --> tuple
6868
functional(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/functional.hpp">functional.hpp</a>)
@@ -83,15 +83,15 @@ flowchart BT
8383
atomic_bitset ---> bitset
8484
B(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/intrusive_forward_list.hpp">intrusive_forward_list.hpp<br><a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/intrusive_list.hpp">intrusive_list.hpp</a>)
8585
B --> panic
86-
ct_format(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/ct_format.hpp">ct_format.hpp</a>)
8786
pp_map(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/pp_map.hpp">pp_map.hpp</a>)
8887
ranges(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/ranges.hpp">ranges.hpp</a>)
89-
ct_format ----> ct_string
90-
ct_format ---> tuple_algorithms
91-
ct_format --> pp_map
92-
ct_format --> ranges
9388
call_by_need(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/call_by_need.hpp">call_by_need.hpp</a>)
9489
call_by_need --> tuple_algorithms
90+
ct_format(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/ct_format.hpp">ct_format.hpp</a>)
91+
ct_format ---> ct_string
92+
ct_format --> tuple_algorithms
93+
ct_format --> pp_map
94+
ct_format --> ranges
9595
latched(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/latched.hpp">latched.hpp</a>)
9696
latched --> functional
9797
optional(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/optional.hpp">optional.hpp</a>)
@@ -100,3 +100,5 @@ flowchart BT
100100
%% level 8
101101
cached(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/cached.hpp">cached.hpp</a>)
102102
cached --> latched
103+
static_assert(<a href="https://github.com/intel/cpp-std-extensions/tree/main/include/stdx/static_assert.hpp">static_assert.hpp</a>)
104+
static_assert --> ct_format

0 commit comments

Comments
 (0)