Logcat: Fix typo

Fix funny "...replace all new characters by spaces" to
"replace all new line characters by spaces"

Change-Id: I8322ccd9f01220d300a0ba2982b2a61252b51242
Reviewed-on: https://code.wireshark.org/review/7540
Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
This commit is contained in:
Michal Labedzki 2015-03-05 11:05:07 +01:00
parent 9848b22cd0
commit 120ee7fca5
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ proto_register_logcat(void)
module = prefs_register_protocol(proto_logcat, NULL);
prefs_register_bool_preference(module, "oneline_info_column",
"Use oneline info column",
"Use oneline info column by replace all new characters by spaces",
"Use oneline info column by replace all new line characters by spaces",
&pref_one_line_info_column);
}