From c66731afa7015d0156da91e7dcca9f010dd5d8a4 Mon Sep 17 00:00:00 2001 From: muzucode <79173451+muzucode@users.noreply.github.com> Date: Sat, 23 Mar 2024 21:20:50 -0400 Subject: [PATCH] Update taste-modeling.md Add a comma. --- _overviews/scala3-book/taste-modeling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-book/taste-modeling.md b/_overviews/scala3-book/taste-modeling.md index 2fe2f8e49..3e391d745 100644 --- a/_overviews/scala3-book/taste-modeling.md +++ b/_overviews/scala3-book/taste-modeling.md @@ -164,7 +164,7 @@ If not, don’t worry, they’re explained in more detail in the [Domain Modelin ### Classes Scala _classes_ are used in OOP-style programming. -Here’s an example of a class that models a “person.” In OOP fields are typically mutable, so `firstName` and `lastName` are both declared as `var` parameters: +Here’s an example of a class that models a “person.” In OOP, fields are typically mutable, so `firstName` and `lastName` are both declared as `var` parameters: {% tabs class_1 class=tabs-scala-version %} {% tab 'Scala 2' for=class_1 %}