Skip to content

Commit a1106bc

Browse files
authored
Update README.md
1 parent f5cb5ab commit a1106bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Evaluation occurs after removing const, volatile, reference.
3131
template < typename T >
3232
using inherit_from_smart_ptr = decltype( inherit_from_smart_ptr_impl( std::declval< std::remove_cv_t< std::remove_reference_t< T > >* >() ) );
3333
```
34-
```inherit_from_smart_ptr<T>::value```/```inherit_from_smart_ptr_v<T>``` is ```true``` if ```T``` is based on ```std::shared_ptr``` or ```std::unique_ptr```.
34+
```inherit_from_smart_ptr<T>::value```/```inherit_from_smart_ptr_v<T>``` is ```true``` if ```T``` is derived from ```std::shared_ptr``` or ```std::unique_ptr```.
3535

3636
Evaluation occurs after removing const, volatile, reference.
3737

@@ -40,7 +40,7 @@ Evaluation occurs after removing const, volatile, reference.
4040
template < typename T >
4141
using inherit_from_shared_ptr = decltype( inherit_from_shared_ptr_impl( std::declval< std::remove_cv_t< std::remove_reference_t< T > >* >() ) );
4242
```
43-
```inherit_from_shared_ptr<T>::value```/```inherit_from_shared_ptr_v<T>``` is ```true``` if ```T``` is based on ```std::shared_ptr```.
43+
```inherit_from_shared_ptr<T>::value```/```inherit_from_shared_ptr_v<T>``` is ```true``` if ```T``` is derived from ```std::shared_ptr```.
4444

4545
Evaluation occurs after removing const, volatile, reference.
4646

@@ -49,7 +49,7 @@ Evaluation occurs after removing const, volatile, reference.
4949
template < typename T >
5050
using inherit_from_unique_ptr = decltype( inherit_from_unique_ptr_impl( std::declval< std::remove_cv_t< std::remove_reference_t< T > >* >() ) );
5151
```
52-
```inherit_from_unique_ptr<T>::value```/```inherit_from_unique_ptr_v<T>``` is ```true``` if ```T``` is based on ```std::unique_ptr```.
52+
```inherit_from_unique_ptr<T>::value```/```inherit_from_unique_ptr_v<T>``` is ```true``` if ```T``` is derived from ```std::unique_ptr```.
5353

5454
Evaluation occurs after removing const, volatile, reference.
5555

0 commit comments

Comments
 (0)