detakarang commited on
Commit
797725d
·
verified ·
1 Parent(s): f0b9ae3

Update README.md

Browse files

Fix typo on model card question example

Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -185,7 +185,7 @@ CREATE TABLE Shipment_Items (
185
  ```
186
 
187
  ### Questions
188
- hat are the email address, town and county of the customers who are of the least common gender?
189
  ```sql
190
  SELECT email_address , town_city , county FROM customers GROUP BY gender_code ORDER BY count(*) ASC LIMIT 1
191
  ```
 
185
  ```
186
 
187
  ### Questions
188
+ What are the email address, town and county of the customers who are of the least common gender?
189
  ```sql
190
  SELECT email_address , town_city , county FROM customers GROUP BY gender_code ORDER BY count(*) ASC LIMIT 1
191
  ```