diff --git a/openstackclient/identity/v3/endpoint.py b/openstackclient/identity/v3/endpoint.py
index 93d77be339..fa1b862847 100644
--- a/openstackclient/identity/v3/endpoint.py
+++ b/openstackclient/identity/v3/endpoint.py
@@ -57,13 +57,13 @@ class CreateEndpoint(show.ShowOne):
             dest='enabled',
             action='store_true',
             default=True,
-            help='Enable user',
+            help='Enable endpoint',
         )
         enable_group.add_argument(
             '--disable',
             dest='enabled',
             action='store_false',
-            help='Disable user',
+            help='Disable endpoint',
         )
         return parser
 
@@ -166,13 +166,13 @@ class SetEndpoint(command.Command):
             dest='enabled',
             action='store_true',
             default=True,
-            help='Enable user',
+            help='Enable endpoint',
         )
         enable_group.add_argument(
             '--disable',
             dest='enabled',
             action='store_false',
-            help='Disable user',
+            help='Disable endpoint',
         )
         return parser