From 6cf461ffb9e997337d08c1db766b281bacb1b49b Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy <1813121+kdheepak@users.noreply.github.com> Date: Mon, 2 Dec 2024 10:07:02 -0500 Subject: [PATCH] docs(tutorial): fix typo in ibis-for-sql-users.qmd (#10549) --- docs/tutorials/ibis-for-sql-users.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/ibis-for-sql-users.qmd b/docs/tutorials/ibis-for-sql-users.qmd index d3ccda0712ed..85c606e4d2b9 100644 --- a/docs/tutorials/ibis-for-sql-users.qmd +++ b/docs/tutorials/ibis-for-sql-users.qmd @@ -151,7 +151,7 @@ ibis.to_sql(joined) If you pass a function instead of a string or Ibis expression in any projection context, it will be invoked with the "parent" table as its argument. This can -help significantly when [composing complex operations. Consider this SQL: +help significantly when composing complex operations. Consider this SQL: ```sql SELECT one, avg(abs(the_sum)) AS mad