Fix typos

This commit is contained in:
Sean Moon 2013-05-09 02:34:47 +09:00
parent 37becd887e
commit bd4ee7c7d2
27 changed files with 35 additions and 35 deletions

View file

@ -24,7 +24,7 @@
*/
static lock_and_signal _log_lock;
/**
* Indicates whether we are outputing to the console.
* Indicates whether we are outputting to the console.
* Protected by _log_lock;
*/
static bool _log_to_console = true;

View file

@ -11,7 +11,7 @@
#ifndef RUST_SIGNAL_H
#define RUST_SIGNAL_H
// Just an abstrict class that reperesents something that can be signalled
// Just an abstract class that represents something that can be signalled
class rust_signal {
public:
virtual void signal() = 0;