summaryrefslogtreecommitdiff
path: root/include/globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/globals.h')
-rw-r--r--include/globals.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/globals.h b/include/globals.h
index b3ee6c3..6faeb8a 100644
--- a/include/globals.h
+++ b/include/globals.h
@@ -1,11 +1,11 @@
/**
* Globals.h
*
- * Wrapper object that gives access to all global variables. You
+ * Wrapper object that gives access to all global variables. You
* can use it more or less the same as the $_GLOBALS object in
- * PHP.
+ * PHP.
*
- * The global PHP variables are acessible via the Php::globals["varname"]
+ * The global PHP variables are acessible via the Php::globals["varname"]
* variables.
*
* @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
@@ -87,16 +87,16 @@ private:
Globals() {}
public:
- /**
- * Get the one and only instance
- * @return Globals
- */
- static Globals &instance();
+ /**
+ * Get the one and only instance
+ * @return Globals
+ */
+ static Globals &instance();
};
/**
* We always have one instance
- * @var Globals
+ * @var Globals
*/
extern Globals &globals;