diff --git a/docs/primer.md b/docs/primer.md index 69d6c6ddc..0b241a7f7 100644 --- a/docs/primer.md +++ b/docs/primer.md @@ -261,7 +261,7 @@ class Queue { public: Queue(); void Enqueue(const E& element); - E* Dequeue(); // Returns NULL if the queue is empty. + E* Dequeue(); // Returns nullptr if the queue is empty. size_t size() const; ... };