Skip to content

Commit 608dd5c

Browse files
authored
Fix typo in SQL profile output demo
1 parent ed11e4a commit 608dd5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/performance.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ This will write the profile data as a series of SQL statements, suitable for ope
5959
perl6 --profile --profile-filename=demo.sql -e 'say (^20).combinations(3).elems'
6060
6161
# create a SQLite database
62-
sqlite3 demo.sql
62+
sqlite3 demo.sqlite
6363
6464
# load the profile data
6565
sqlite> .read demo.sql
6666
67-
# the query below is equivalent to the default view of the "Routines" tab in the HTML file
67+
# the query below is equivalent to the default view of the "Routines" tab in the HTML profile
6868
sqlite> select
6969
...> case when r.name = "" then "<anon>" else r.name end,
7070
...> r.file,

0 commit comments

Comments
 (0)