Преглед на файлове

Update README.md (#1869)

Made some small change will enhance the quilty of reading
Kushal Agrawal преди 7 месеца
родител
ревизия
5978ed02c8
променени са 1 файла, в които са добавени 5 реда и са изтрити 5 реда
  1. 5 5
      README.md

+ 5 - 5
README.md

@@ -70,13 +70,13 @@ Taipy is a Two-in-One Tool for UI Generation and Scenario/Data Management
 
 
 ## ⚙️ Quickstart
 ## ⚙️ Quickstart
 
 
-To install Taipy stable release run:
+To install the Taipy stable release run:
 
 
 ```bash
 ```bash
 pip install taipy
 pip install taipy
 ```
 ```
 
 
-To install Taipy on a Conda Environment or from source, please refer to the [Installation Guide](https://docs.taipy.io/en/latest/installation/).<br />
+To install Taipy on a Conda Environment or from a source, please refer to the [Installation Guide](https://docs.taipy.io/en/latest/installation/).<br />
 To get started with Taipy, please refer to the [Getting Started Guide](https://docs.taipy.io/en/latest/getting_started/).
 To get started with Taipy, please refer to the [Getting Started Guide](https://docs.taipy.io/en/latest/getting_started/).
 
 
 &nbsp;
 &nbsp;
@@ -127,7 +127,7 @@ Check out the movie genre demo scenario creation with this [Demo](https://docs.t
 
 
 This simple Taipy application demonstrates how to create a basic film recommendation system using Taipy.<br />
 This simple Taipy application demonstrates how to create a basic film recommendation system using Taipy.<br />
 The application filters a dataset of films based on the user's selected genre and displays the top seven films in that genre by popularity.
 The application filters a dataset of films based on the user's selected genre and displays the top seven films in that genre by popularity.
-Here is the full code for both the frontend and backend of the application.
+Here is the full code for both the front-end and back-end of the application.
 
 
 ```python
 ```python
 import taipy as tp
 import taipy as tp
@@ -169,10 +169,10 @@ if __name__ == "__main__":
     # Taipy User Interface
     # Taipy User Interface
     # Let's add a GUI to our Scenario Management for a full application
     # Let's add a GUI to our Scenario Management for a full application
 
 
-    # Get list of genres
+    # Get the list of genres
     genres = [
     genres = [
         "Action", "Adventure", "Animation", "Children", "Comedy", "Fantasy", "IMAX"
         "Action", "Adventure", "Animation", "Children", "Comedy", "Fantasy", "IMAX"
-        "Romance","Sci-FI", "Western", "Crime", "Mystery", "Drama", "Horror", "Thriller", "Film-Noir","War", "Musical", "Documentary"
+        "Romance", "Sci-FI", "Western", "Crime", "Mystery", "Drama", "Horror", "Thriller", "Film-Noir", "War", "Musical", "Documentary"
     ]
     ]
 
 
     # Initialization of variables
     # Initialization of variables