From e7d56cf1b00908045f5fd62ed7bddc5878714d4b Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Fri, 16 Oct 2020 23:07:31 -0400 Subject: [PATCH] Fix copypasta in basics tutorial --- README.md | 2 +- tutorials/basics/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a70f29..049c93e 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ import ( Bubble Tea programs are comprised of a **model** that describes the application state and three simple methods on that model: -We + * **Init**, a function that returns an initial command for the application to run. * **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. diff --git a/tutorials/basics/README.md b/tutorials/basics/README.md index fd80305..7864b63 100644 --- a/tutorials/basics/README.md +++ b/tutorials/basics/README.md @@ -32,7 +32,7 @@ import ( Bubble Tea programs are comprised of a **model** that describes the application state and three simple methods on that model: -We + * **Init**, a function that returns an initial command for the application to run. * **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.