summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--doc/ranger.12
-rw-r--r--doc/ranger.pod2
-rw-r--r--ranger/gui/ui.py2
4 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7944edab..4316a60a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -25,7 +25,7 @@ This log documents changes between stable versions.
 * Changed `zi` key to toggle `preview_images` option
 * Improved PEP8 compliance
 * Improved documentation
-* Improved UI by separating file path in title bar with a space from the
+* Improved UI by separating file path in titlebar with a space from the
   username/hostname for quick copy&pasting by shift+double-clicking on it.
 
 # 2015-10-04: version 1.7.2
@@ -35,7 +35,7 @@ This log documents changes between stable versions.
 * Fixed `examples/vim_file_chooser` to work with gvim too
 * Fixed some other rare crashes and bugs
 * Fixed downward mouse wheel scrolling
-* Fixed warning about regex splits being drawn in title bar since python3.5
+* Fixed warning about regex splits being drawn in titlebar since python3.5
 * Really fixed `S` key binding not working when SHELL=fish
 * Improved `doc/cheatsheet.svg`
 * Added some entries to rifle.conf
diff --git a/doc/ranger.1 b/doc/ranger.1
index abe6f70b..16c7256e 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -847,7 +847,7 @@ Put the status bar at the top of the window?
 Show hostname in titlebar?
 .IP "tilde_in_titlebar [bool]" 4
 .IX Item "tilde_in_titlebar [bool]"
-Abbreviate \f(CW$HOME\fR with ~ in the title bar (first line) of ranger?
+Abbreviate \f(CW$HOME\fR with ~ in the titlebar (first line) of ranger?
 .IP "unicode_ellipsis [bool]" 4
 .IX Item "unicode_ellipsis [bool]"
 Use a unicode \*(L"...\*(R" character instead of \*(L"~\*(R" to mark cut-off filenames?
diff --git a/doc/ranger.pod b/doc/ranger.pod
index ba80e5e7..0a6bc2c4 100644
--- a/doc/ranger.pod
+++ b/doc/ranger.pod
@@ -856,7 +856,7 @@ Show hostname in titlebar?
 
 =item tilde_in_titlebar [bool]
 
-Abbreviate $HOME with ~ in the title bar (first line) of ranger?
+Abbreviate $HOME with ~ in the titlebar (first line) of ranger?
 
 =item unicode_ellipsis [bool]
 
diff --git a/ranger/gui/ui.py b/ranger/gui/ui.py
index cb45377f..1deacc89 100644
--- a/ranger/gui/ui.py
+++ b/ranger/gui/ui.py
@@ -250,7 +250,7 @@ class UI(  # pylint: disable=too-many-instance-attributes,too-many-public-method
         from ranger.gui.widgets.taskview import TaskView
         from ranger.gui.widgets.pager import Pager
 
-        # Create a title bar
+        # Create a titlebar
         self.titlebar = TitleBar(self.win)
         self.add_child(self.titlebar)