Skip to content

Commit

Permalink
fixing the Ascii doc from C to C++ (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
bvbasavaraju committed Jul 7, 2024
1 parent a4c430d commit c201f7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/ctl.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:hardbreaks-option:

This is a C++ library, created to include algorithms that can be worked out at compile time.
It uses C++ template meta programming and functional programming techniques to execute many algorithms at compile time on one or more types.
It uses template meta programming and functional programming techniques to execute many algorithms at compile time on one or more types.

_The more work done at compile time, less time to complete the job at run time!_

Expand Down
2 changes: 1 addition & 1 deletion include/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct valid {
struct helper<T, std::void_t<typename T::type>> : public std::true_type {};

public:
using type = std::integral_constant<bool, helper<F<Ts...>>::value>;
using type = helper<F<Ts...>>;
};

template <template <typename...> typename F, typename... Ts>
Expand Down

0 comments on commit c201f7f

Please sign in to comment.