diff --git a/README.txt b/README.txt
index da6afee..f9dbf6d 100644
--- a/README.txt
+++ b/README.txt
@@ -1,7 +1,7 @@
 Project Git Instructions
 ------------------------
 
-This module adds the "Git instructions" tab to certian pages on Drupal.org. This includes modules, themes and installation profiles.
+This module adds the "Verion control" tab to certian pages on Drupal.org. This includes modules, themes and installation profiles.
 
 This modules is specifically build for use on drupal.org.
 
diff --git a/project_git_instructions.module b/project_git_instructions.module
index 7ba720b..995154b 100644
--- a/project_git_instructions.module
+++ b/project_git_instructions.module
@@ -7,7 +7,7 @@ function project_git_instructions_menu() {
   $items = array();
 
   $items['node/%node/git-instructions'] = array(
-    'title' => t('Git instructions'),
+    'title' => t('Version control'),
     'access callback' => 'project_git_instructions_visibility',
     'access arguments' => array(1),
     'page callback' => 'project_git_instructions_project_tab',
@@ -44,7 +44,7 @@ function project_git_instructions_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
     elseif ($op == 'view' && $a4) {
       if ($node->project['sandbox']) {
         if (project_git_instructions_version_is_privileged($node, $user)) {
-          $maintainer_link = t('Visit the Git instructions tab for full directions.');
+          $maintainer_link = t('Visit the Version control tab for full directions.');
           $node->content['project_info']['#value'] = l($maintainer_link, "node/$node->nid/git-instructions");
         }
         else {
