diff options
author | 2015-03-05 19:48:34 -0800 | |
---|---|---|
committer | 2015-03-05 19:48:34 -0800 | |
commit | aecd0d0adf59a1555efa373476761d915aef298f (patch) | |
tree | 70f7e43520f577b24cb949d6f020807cd66bdfb9 | |
parent | bfbc622605263e969722e0999e3429c35474f8e8 (diff) | |
download | paludis-aecd0d0adf59a1555efa373476761d915aef298f.tar.gz paludis-aecd0d0adf59a1555efa373476761d915aef298f.tar.xz |
ruby: fix stupid typo
-rw-r--r-- | ruby/action.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby/action.cc b/ruby/action.cc index e8f50a843..0e6866458 100644 --- a/ruby/action.cc +++ b/ruby/action.cc @@ -137,7 +137,7 @@ namespace { using OptionsClass = PretendActionOptions; static constexpr const char *ActionClassName = "PretendAction"; - static VALUE BoxedTYpe() { return c_pretend_action; } + static VALUE BoxedType() { return c_pretend_action; } }; template <> @@ -153,7 +153,7 @@ namespace { using OptionsClass = UninstallActionOptions; static constexpr const char *OptionClassName = "UninstallAction"; - static VALUE BoxedTYpe() { return c_uninstall_action; } + static VALUE BoxedType() { return c_uninstall_action; } }; /* |