Skip to content

Commit

Permalink
Fix spelling of stackcollapse in comments
Browse files Browse the repository at this point in the history
s/stackcolllapse/stackcollapse/g. This seems to have been copy pasted
across a bunch of files.
  • Loading branch information
psanford committed Oct 16, 2018
1 parent 043cb93 commit 9053353
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dev/hcstackcollapse.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
# hcstackcolllapse.pl collapse hot/cold multiline stacks into single lines.
# hcstackcollapse.pl collapse hot/cold multiline stacks into single lines.
#
# EXPERIMENTAL: This is a work in progress, and may not work properly.
#
Expand Down
2 changes: 1 addition & 1 deletion stackcollapse-go.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
# stackcolllapse-go.pl collapse golang samples into single lines.
# stackcollapse-go.pl collapse golang samples into single lines.
#
# Parses golang smaples generated by "go tool pprof" and outputs stacks as
# single lines, with methods separated by semicolons, and then a space and an
Expand Down
2 changes: 1 addition & 1 deletion stackcollapse-jstack.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
# stackcolllapse-jstack.pl collapse jstack samples into single lines.
# stackcollapse-jstack.pl collapse jstack samples into single lines.
#
# Parses Java stacks generated by jstack(1) and outputs RUNNABLE stacks as
# single lines, with methods separated by semicolons, and then a space and an
Expand Down
2 changes: 1 addition & 1 deletion stackcollapse-ljp.awk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/awk -f
#
# stackcolllapse-ljp.awk collapse lightweight java profile reports
# stackcollapse-ljp.awk collapse lightweight java profile reports
# into single lines stacks.
#
# Parses a list of multiline stacks generated by:
Expand Down
2 changes: 1 addition & 1 deletion stackcollapse-perf.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
# stackcolllapse-perf.pl collapse perf samples into single lines.
# stackcollapse-perf.pl collapse perf samples into single lines.
#
# Parses a list of multiline stacks generated by "perf script", and
# outputs a semicolon separated stack followed by a space and a count.
Expand Down
2 changes: 1 addition & 1 deletion stackcollapse-stap.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
# stackcolllapse-stap.pl collapse multiline SystemTap stacks
# stackcollapse-stap.pl collapse multiline SystemTap stacks
# into single lines.
#
# Parses a multiline stack followed by a number on a separate line, and
Expand Down
2 changes: 1 addition & 1 deletion stackcollapse.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
# stackcolllapse.pl collapse multiline stacks into single lines.
# stackcollapse.pl collapse multiline stacks into single lines.
#
# Parses a multiline stack followed by a number on a separate line, and
# outputs a semicolon separated stack followed by a space and the number.
Expand Down

0 comments on commit 9053353

Please sign in to comment.