diff --git a/snippets/head.md b/snippets/head.md index f4b65431f..536a3a473 100644 --- a/snippets/head.md +++ b/snippets/head.md @@ -13,5 +13,5 @@ def head(lst): ``` ```py -head([1, 2, 3]); # 1 +head([1, 2, 3]) # 1 ``` diff --git a/snippets/initial.md b/snippets/initial.md index 4bf098b10..ac40fecc0 100644 --- a/snippets/initial.md +++ b/snippets/initial.md @@ -13,5 +13,5 @@ def initial(lst): ``` ```py -initial([1, 2, 3]); # [1,2] +initial([1, 2, 3]) # [1,2] ``` diff --git a/snippets/tail.md b/snippets/tail.md index d2dc534e2..b3a3d981d 100644 --- a/snippets/tail.md +++ b/snippets/tail.md @@ -13,6 +13,6 @@ def tail(lst): ``` ```py -tail([1, 2, 3]); # [2,3] -tail([1]); # [1] +tail([1, 2, 3]) # [2,3] +tail([1]) # [1] ```