You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by sy...@apache.org on 2015/10/31 06:51:39 UTC

[3/4] hbase git commit: HBASE-14733 Minor typo in alter_namespace.rb

HBASE-14733 Minor typo in alter_namespace.rb


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/4534f8ed
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/4534f8ed
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/4534f8ed

Branch: refs/heads/hbase-12439
Commit: 4534f8ed0c60974bbd1d3343248735b9f60e0082
Parents: c6d3dcd
Author: Enis Soztutar <en...@apache.org>
Authored: Fri Oct 30 17:52:28 2015 -0700
Committer: Enis Soztutar <en...@apache.org>
Committed: Fri Oct 30 17:52:28 2015 -0700

----------------------------------------------------------------------
 hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb  | 4 ++--
 hbase-shell/src/main/ruby/shell/commands/create_namespace.rb | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/4534f8ed/hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb
----------------------------------------------------------------------
diff --git a/hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb b/hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb
index 760bbf7..a16e10d 100644
--- a/hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb
+++ b/hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb
@@ -26,11 +26,11 @@ Alter namespace properties.
 
 To add/modify a property:
 
-  hbase> alter_namespace 'ns1', {METHOD => 'set', 'PROERTY_NAME' => 'PROPERTY_VALUE'}
+  hbase> alter_namespace 'ns1', {METHOD => 'set', 'PROPERTY_NAME' => 'PROPERTY_VALUE'}
 
 To delete a property:
 
-  hbase> alter_namespace 'ns1', {METHOD => 'unset', NAME=>'PROERTY_NAME'}
+  hbase> alter_namespace 'ns1', {METHOD => 'unset', NAME=>'PROPERTY_NAME'}
 EOF
       end
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/4534f8ed/hbase-shell/src/main/ruby/shell/commands/create_namespace.rb
----------------------------------------------------------------------
diff --git a/hbase-shell/src/main/ruby/shell/commands/create_namespace.rb b/hbase-shell/src/main/ruby/shell/commands/create_namespace.rb
index 3259eb6..adb6897 100644
--- a/hbase-shell/src/main/ruby/shell/commands/create_namespace.rb
+++ b/hbase-shell/src/main/ruby/shell/commands/create_namespace.rb
@@ -27,7 +27,7 @@ and optionally a dictionary of namespace configuration.
 Examples:
 
   hbase> create_namespace 'ns1'
-  hbase> create_namespace 'ns1', {'PROERTY_NAME'=>'PROPERTY_VALUE'}
+  hbase> create_namespace 'ns1', {'PROPERTY_NAME'=>'PROPERTY_VALUE'}
 EOF
       end