s/currect/correct/, accidentally introduced in 
608b167f9f9.
 
            Output: int4_tbl.f1
 (5 rows)
 
--- Ensure that we inline the currect CTE when there are
+-- Ensure that we inline the correct CTE when there are
 -- multiple CTEs with the same name
 explain (verbose, costs off)
 with x as (select 1 as y)
 
 with x as materialized (select * from int4_tbl)
 select * from (with y as (select * from x) select * from y) ss;
 
--- Ensure that we inline the currect CTE when there are
+-- Ensure that we inline the correct CTE when there are
 -- multiple CTEs with the same name
 explain (verbose, costs off)
 with x as (select 1 as y)