diff --git a/flag.module b/flag.module
index 7b54c65..c085be9 100644
--- a/flag.module
+++ b/flag.module
@@ -423,7 +423,7 @@ function flag_help($path, $arg) {
       return $output;
 
     case FLAG_ADMIN_PATH . '/add':
-      $output = '<p>' . t('Select the type of flag to create. An individual flag can only affect one type of object. This cannot be changed once the flag is created.') . '</p>';
+      $output = '<p>' . t('Select the type of flag to create.') . '</p>';
       return $output;
 
     case FLAG_ADMIN_PATH . '/manage/%/fields':
diff --git a/includes/flag.admin.inc b/includes/flag.admin.inc
index 6461a49..1ff18db 100644
--- a/includes/flag.admin.inc
+++ b/includes/flag.admin.inc
@@ -267,7 +267,7 @@ function flag_add_form($form, &$form_state) {
     '#type' => 'radios',
     '#title' => t('Flag type'),
     '#default_value' => 'node',
-    '#description' => t('The type of object this flag will affect. This cannot be changed once the flag is created.'),
+    '#description' => t('The type of entities on which this flag will be used. This cannot be changed once the flag is created.'),
     '#required' => TRUE,
     '#options' => $types,
   );
