Skip to content

Commit cd9bc61

Browse files
authored
Fix typos in warning msgs (#231)
1 parent 12febe6 commit cd9bc61

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

hipamd/bin/roc-obj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ run_command() {
207207
}
208208

209209
main() {
210-
printf "Warning: These roc-obj tools are being DEPRECATED. Similar functionality is being provided by llvm-objdump in the rocm-llvm package.\n"
210+
printf "Warning: The roc-obj tools have been DEPRECATED. Similar functionality is provided by llvm-objdump in the rocm-llvm package.\n"
211211

212212
[[ -n $OPT_OUTDIR ]] && mkdir -p "$OPT_OUTDIR"
213213
local inputs=()

hipamd/bin/roc-obj-extract

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ sub usage {
7373
my %options=();
7474
getopts('vho:', \%options);
7575

76-
# this tool is being deprecated
77-
print("Warning: This tool is being DEPRECATED. Similar funcitonality is provided in the rocm-llvm package with llvm-objdump.\n");
76+
# this tool has been deprecated
77+
print("Warning: This tool has been DEPRECATED. Similar functionality is provided by llvm-objdump in the rocm-llvm package.\n");
7878

7979
if (defined $options{h}) {
8080
usage();

hipamd/bin/roc-obj-ls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ if (defined $options{h}) {
5959
usage();
6060
}
6161

62-
# this tool is being deprecated
63-
print("Warning: This tool is being DEPRECATED. Similar funcitonality is provided in the rocm-llvm package with llvm-objdump.\n");
62+
# this tool has been deprecated
63+
print("Warning: This tool has been DEPRECATED. Similar functionality is provided by llvm-objdump in the rocm-llvm package.\n");
6464

6565
my $verbose = $options{v};
6666
my $debug = $options{d};

0 commit comments

Comments
 (0)