Index: uc_attribute/uc_attribute.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ubercart/uc_attribute/uc_attribute.module,v
retrieving revision 1.12.2.20
diff -u -r1.12.2.20 uc_attribute.module
--- uc_attribute/uc_attribute.module	18 Apr 2009 07:29:18 -0000	1.12.2.20
+++ uc_attribute/uc_attribute.module	18 Apr 2009 11:00:47 -0000
@@ -322,7 +322,7 @@
         $output = '';
         $attributes = uc_product_get_attributes($node->nid);
         foreach ($attributes as $attribute) {
-          $output .= '<h3>'. uc_attribute_get_name($attribute) .'</h3>';
+          $output .= '<h3>'. _uc_attribute_get_name($attribute) .'</h3>';
           foreach ($attribute->options as $option) {
             $output .= $option->name .' ';
           }
@@ -703,7 +703,7 @@
 /**
  * Returns the attribute name to display.
  *
- * An attributes with a label set returns that label except when set to
+ * An attribute with a label set returns that label except when set to
  * '<none>'. In this case, a NULL is returned. The $title argument forces the
  * function to return the name property instead of label when label is set to
  * '<none>'.
