Skip to content

Commit 7733c12

Browse files
committed
feat: update text
1 parent 931ea0b commit 7733c12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ports.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,9 @@ impl Ports {
201201
fn make_list(&self) -> List {
202202
let mut items = Vec::new();
203203
for ip in &self.ip_ports {
204-
let ip_line = Line::from(vec!["ip: ".yellow(), ip.ip.clone().blue()]);
204+
let ip_line = Line::from(vec!["IP: ".yellow(), ip.ip.clone().blue()]);
205205

206-
let mut ports_spans = vec!["ports: ".yellow()];
206+
let mut ports_spans = vec!["PORTS: ".yellow()];
207207
if ip.state == PortsScanState::Waiting {
208208
ports_spans.push("?".red());
209209
} else if ip.state == PortsScanState::Scanning {

0 commit comments

Comments
 (0)