From 9db97b207e0497562fb77c5d67f5a3645abc6b25 Mon Sep 17 00:00:00 2001
From: Matt Henderson <matt_henderson@sil.org>
Date: Wed, 7 Feb 2018 09:19:17 -0500
Subject: [PATCH] doc: Switch to namespaced SimpleSAML\Module.

---
 docs/simplesamlphp-theming.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/simplesamlphp-theming.md b/docs/simplesamlphp-theming.md
index 0c66fbde9..fd7b0fa8a 100644
--- a/docs/simplesamlphp-theming.md
+++ b/docs/simplesamlphp-theming.md
@@ -107,10 +107,10 @@ modules
 
 Reference these resources in your custom PHP templates under `themes/fancytheme` by using a generator for the URL:
 ```php
-<?php echo SimpleSAML_Module::getModuleURL('mymodule/logo.png'); ?>
+<?php echo SimpleSAML\Module::getModuleURL('mymodule/logo.png'); ?>
 ```
 
 Example for a custom CSS stylesheet file:
 ```html
-<link rel="stylesheet" type="text/css" href="<?php echo SimpleSAML_Module::getModuleURL('mymodule/style.css'); ?>" />
+<link rel="stylesheet" type="text/css" href="<?php echo SimpleSAML\Module::getModuleURL('mymodule/style.css'); ?>" />
 ```
-- 
GitLab