Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.829
diff -u -p -r1.829 common.inc
--- includes/common.inc	22 Nov 2008 13:55:27 -0000	1.829
+++ includes/common.inc	22 Nov 2008 19:36:41 -0000
@@ -113,7 +113,8 @@ function drupal_get_breadcrumb() {
 }
 
 /**
- * Returns a string containing RDF namespaces for the html tag of a XHTML page.
+ * Return a string containing RDF namespaces for the <html> tag of an XHTML
+ * page.
  */
 function drupal_get_rdf_namespaces() {
   // Serialize the RDF namespaces used in RDFa annotation.
Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.452
diff -u -p -r1.452 theme.inc
--- includes/theme.inc	22 Nov 2008 13:55:27 -0000	1.452
+++ includes/theme.inc	22 Nov 2008 19:36:43 -0000
@@ -1881,7 +1881,7 @@ function template_preprocess_page(&$vari
   $variables['scripts']           = drupal_get_js();
   $variables['tabs']              = theme('menu_local_tasks');
   $variables['title']             = drupal_get_title();
-  // RDFa annotatates XHTML with RDF data, while GRDDL provides
+  // RDFa allows annotation of XHTML pages with RDF data, while GRDDL provides
   // mechanisms for extraction of this RDF content via XSLT transformation
   // using an associated GRDDL profile.
   $variables['rdf_namespaces']    = drupal_get_rdf_namespaces();
Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.642
diff -u -p -r1.642 system.module
--- modules/system/system.module	22 Nov 2008 13:55:27 -0000	1.642
+++ modules/system/system.module	22 Nov 2008 19:36:46 -0000
@@ -209,7 +209,7 @@ function system_perm() {
 }
 
 /**
- * Implementation of hook_rdf_namespace().
+ * Implementation of hook_rdf_namespaces().
  */
 function system_rdf_namespaces() {
   return array(
Index: themes/chameleon/chameleon.theme
===================================================================
RCS file: /cvs/drupal/drupal/themes/chameleon/chameleon.theme,v
retrieving revision 1.79
diff -u -p -r1.79 chameleon.theme
--- themes/chameleon/chameleon.theme	22 Nov 2008 13:55:27 -0000	1.79
+++ themes/chameleon/chameleon.theme	22 Nov 2008 19:36:47 -0000
@@ -30,7 +30,7 @@ function chameleon_page($content, $show_
 
   $output  = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML+RDFa 1.0//EN\" \"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd\">\n";
   $output .= "<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"$language\" xml:lang=\"$language\" dir=\"$direction\"\n";
-  $putput .= "  $rdf_namespaces>\n";
+  $output .= "  $rdf_namespaces>\n";
   $output .= "<head profile=\"http://ns.inria.fr/grddl/rdfa/\">\n";
   $output .= " <title>" . ($title ? strip_tags($title) . " | " . variable_get("site_name", "Drupal") : variable_get("site_name", "Drupal") . " | " . variable_get("site_slogan", "")) . "</title>\n";
   $output .= drupal_get_html_head();
