From 7b702eabffd6e79e2425ea8de478d79e675ed886 Mon Sep 17 00:00:00 2001 From: Nikita <80875524+enarve@users.noreply.github.com> Date: Wed, 29 Oct 2025 16:09:20 +0100 Subject: [PATCH] Fix minor style inconsistency --- src/ch19-03-pattern-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch19-03-pattern-syntax.md b/src/ch19-03-pattern-syntax.md index 1641329504..92a3cc4086 100644 --- a/src/ch19-03-pattern-syntax.md +++ b/src/ch19-03-pattern-syntax.md @@ -188,7 +188,7 @@ In this example, the value `p` matches the second arm by virtue of `x` containing a `0`, so this code will print `On the y axis at 7`. Remember that a `match` expression stops checking arms once it has found the -first matching pattern, so even though `Point { x: 0, y: 0}` is on the `x` axis +first matching pattern, so even though `Point { x: 0, y: 0 }` is on the `x` axis and the `y` axis, this code would only print `On the x axis at 0`.