Skip to content

Commit

Permalink
Fix typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mqudsi committed Jan 8, 2024
1 parent 55659ce commit 2dc88cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ use rsconf::{LinkType, Target};
fn find_curses(system: &Target) -> bool {
// We need to try different library names depending on the platform
for lib in [ "tinfo", "terminfo" ] {
if !system.has_library("lib") {
if !system.has_library(lib) {
continue;
}
if system.has_symbol("cur_term", lib)
Expand Down

0 comments on commit 2dc88cf

Please sign in to comment.