aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Schrodinbit.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/Schrodinbit.hpp')
-rw-r--r--src/engine/Schrodinbit.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/Schrodinbit.hpp b/src/engine/Schrodinbit.hpp
index 16effbf..aca88a2 100644
--- a/src/engine/Schrodinbit.hpp
+++ b/src/engine/Schrodinbit.hpp
@@ -1,5 +1,5 @@
/* This file is part of Machina.
- * Copyright 2007-2011 David Robillard <http://drobilla.net>
+ * Copyright 2007-2012 David Robillard <http://drobilla.net>
*
* Machina is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,9 +18,10 @@
#ifndef SCHRODINBIT_HPP
#define SCHRODINBIT_HPP
-/** A flag which becomes false when it's value is observed
+/** A flag which becomes false when its value is observed
*/
-class Schrodinbit {
+class Schrodinbit
+{
public:
Schrodinbit() : _flag(false) {}
@@ -40,4 +41,3 @@ private:
};
#endif // SCHRODINBIT_HPP
-