From 6c607aa3ae42a49f16e958d1c904160985de8b34 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Thu, 23 Jul 2020 17:35:04 -0400 Subject: [PATCH] Github's Markdown support doesn't include definition lists, I see --- tutorials/basics/README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tutorials/basics/README.md b/tutorials/basics/README.md index b9f6435..afb8a21 100644 --- a/tutorials/basics/README.md +++ b/tutorials/basics/README.md @@ -33,12 +33,9 @@ import will be the Bubble Tea, library, which we'll call `tea` for short. Bubble Tea programs are comprised of a model that describes the application state and three simple functions that are centered around the model: -Initialize -: A function that returns the model's initial state. -Update -: A function that handles incoming events and updates the model accordingly. -View -: A function that renders the UI based on the data in the model. +* **Initialize**, a function that returns the model's initial state. +* **Update**, a function that handles incoming events and updates the model accordingly. +* **View**, a function that renders the UI based on the data in the model. ## The Model