about summary refs log tree commit diff
path: root/src/libterm/terminfo
diff options
context:
space:
mode:
Diffstat (limited to 'src/libterm/terminfo')
-rw-r--r--src/libterm/terminfo/searcher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libterm/terminfo/searcher.rs b/src/libterm/terminfo/searcher.rs
index 6b8ebb670e7..0002b20d205 100644
--- a/src/libterm/terminfo/searcher.rs
+++ b/src/libterm/terminfo/searcher.rs
@@ -32,7 +32,7 @@ pub fn get_dbpath_for_term(term: &str) -> Option<Box<Path>> {
         Some(dir) => dirs_to_search.push(Path::new(dir)),
         None => {
             if homedir.is_some() {
-                // ncurses compatability;
+                // ncurses compatibility;
                 dirs_to_search.push(homedir.unwrap().join(".terminfo"))
             }
             match getenv("TERMINFO_DIRS") {