Skip to content

Commit d5d3ebc

Browse files
Merge pull request #4750 from Rageking8/remove-trailing-backticks
Remove trailing backticks
2 parents 53c0b95 + 1a5a19c commit d5d3ebc

10 files changed

+10
-10
lines changed

docs/standard-library/greater-equal-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct greater_equal<void>
2525
{
2626
template <class T, class U>
27-
auto operator()(T&& Left, U&& Right) const`
27+
auto operator()(T&& Left, U&& Right) const
2828
-> decltype(std::forward<T>(Left)>= std::forward<U>(Right));
2929
};
3030
```

docs/standard-library/logical-and-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct logical_and<void>
2525
{
2626
template <class T, class U>
27-
auto operator()(T&& Left, U&& Right) const`
27+
auto operator()(T&& Left, U&& Right) const
2828
-> decltype(std::forward<T>(Left) && std::forward<U>(Right));
2929
};
3030
```

docs/standard-library/logical-not-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct logical_not<void>
2525
{
2626
template <class Type>
27-
auto operator()(Type&& Left) const`
27+
auto operator()(Type&& Left) const
2828
-> decltype(!std::forward<Type>(Left));
2929
};
3030
```

docs/standard-library/logical-or-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct logical_or<void>
2525
{
2626
template <class T, class U>
27-
auto operator()(T&& Left, U&& Right) const`
27+
auto operator()(T&& Left, U&& Right) const
2828
-> decltype(std::forward<T>(Left) || std::forward<U>(Right));
2929
};
3030
```

docs/standard-library/minus-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct minus<void>
2525
{
2626
template <class T, class U>
27-
auto operator()(T&& Left, U&& Right) const`
27+
auto operator()(T&& Left, U&& Right) const
2828
-> decltype(std::forward<T>(Left) - std::forward<U>(Right));
2929
};
3030
```

docs/standard-library/modulus-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct modulus<void>
2525
{
2626
template <class T, class U>
27-
auto operator()(T&& Left, U&& Right) const`
27+
auto operator()(T&& Left, U&& Right) const
2828
-> decltype(std::forward<T>(Left) % std::forward<U>(Right));
2929
};
3030
```

docs/standard-library/multiplies-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct multiplies<void>
2525
{
2626
template <class T, class U>
27-
auto operator()(T&& Left, U&& Right) const`
27+
auto operator()(T&& Left, U&& Right) const
2828
-> decltype(std::forward<T>(Left) * std::forward<U>(Right));
2929
};
3030
```

docs/standard-library/negate-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct negate<void>
2525
{
2626
template <class Type>
27-
auto operator()(Type&& Left) const`
27+
auto operator()(Type&& Left) const
2828
-> decltype(-std::forward<Type>(Left));
2929
};
3030
```

docs/standard-library/not-equal-to-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct not_equal_to<void>
2525
{
2626
template <class T, class U>
27-
auto operator()(T&& Left, U&& Right) const`
27+
auto operator()(T&& Left, U&& Right) const
2828
-> decltype(std::forward<T>(Left) != std::forward<U>(Right));
2929
};
3030
```

docs/standard-library/plus-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ template <>
2424
struct plus<void>
2525
{
2626
template <class T, class U>
27-
auto operator()(T&& Left, U&& Right) const`
27+
auto operator()(T&& Left, U&& Right) const
2828
-> decltype(std::forward<T>(Left) + std::forward<U>(Right));
2929
};
3030
```

0 commit comments

Comments
 (0)