Skip to content

Commit 652d0ee

Browse files
committed
Fixed typo (again!)
1 parent 81acd81 commit 652d0ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ int main() {
6161
- `observable_unique_ptr` does not support custom allocators, but `std::shared_ptr` does.
6262
- `observable_unique_ptr` does not have a `release()` function to let go of the ownership, which `std::unique_ptr` has.
6363
- `observable_unique_ptr` allows moving from other `observable_unique_ptr` only if the deleter type is exactly the same, while `std::unique_ptr` allows moving from a convertible deleter.
64-
- `observable_unique_ptr` may or may not own a deleter instance; if in doubt, check `has_deleter()`` before calling `get_deleter()`, or use `try_get_deleter()`.
64+
- `observable_unique_ptr` may or may not own a deleter instance; if in doubt, check `has_deleter()` before calling `get_deleter()`, or use `try_get_deleter()`.
6565
- a moved-from `observable_unique_ptr` will not own a deleter instance.

0 commit comments

Comments
 (0)