nullify_shared_ptr changing == to = in documentation.

This commit is contained in:
Michael Hamilton 2016-12-01 22:24:47 -08:00 committed by GitHub
parent 9e17514b57
commit 9218dda001

View File

@ -206,7 +206,7 @@ Conversion to `std::shared_ptr<T> &` is supported for function calls, but if you
```cpp
// ok this is supported, you can register it with chaiscript engine
void nullify_shared_ptr(std::shared_ptr<int> &t) {
t == nullptr
t = nullptr
}
```