diff options
| author | Sean Moon <ssamoon@ucla.edu> | 2013-05-09 02:34:47 +0900 |
|---|---|---|
| committer | Sean Moon <ssamoon@ucla.edu> | 2013-05-09 02:34:47 +0900 |
| commit | bd4ee7c7d2f00e8c41824fac7e5d155dff40c25f (patch) | |
| tree | 6b48543d67f951fd3537a8624f2f203c5d910496 /src/rt | |
| parent | 37becd887e74383cafd2930a87dfbb8f19c5af15 (diff) | |
| download | rust-bd4ee7c7d2f00e8c41824fac7e5d155dff40c25f.tar.gz rust-bd4ee7c7d2f00e8c41824fac7e5d155dff40c25f.zip | |
Fix typos
Diffstat (limited to 'src/rt')
| -rw-r--r-- | src/rt/rust_log.cpp | 2 | ||||
| -rw-r--r-- | src/rt/rust_signal.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_log.cpp b/src/rt/rust_log.cpp index 32723cf31bc..c2b58c9fda7 100644 --- a/src/rt/rust_log.cpp +++ b/src/rt/rust_log.cpp @@ -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; diff --git a/src/rt/rust_signal.h b/src/rt/rust_signal.h index bfea68a1aad..4281092f835 100644 --- a/src/rt/rust_signal.h +++ b/src/rt/rust_signal.h @@ -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; |
