From b21039452e8d33db9470c6742ff5f7cdc4e7b097 Mon Sep 17 00:00:00 2001 From: Marco Antognini Date: Sun, 29 Apr 2018 18:40:39 +0200 Subject: [PATCH] Fixed a reference in the documentation of Shader --- include/SFML/Graphics/Shader.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SFML/Graphics/Shader.hpp b/include/SFML/Graphics/Shader.hpp index fef1bec0..664dd865 100644 --- a/include/SFML/Graphics/Shader.hpp +++ b/include/SFML/Graphics/Shader.hpp @@ -822,7 +822,7 @@ private: /// object being drawn (which cannot be known in advance). /// /// To apply a shader to a drawable, you must pass it as an -/// additional parameter to the \ref Window::draw() draw() function: +/// additional parameter to the \ref RenderWindow::draw function: /// \code /// window.draw(sprite, &shader); /// \endcode