Wootang01 commited on
Commit
a184a4d
·
1 Parent(s): d8fbcce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ import streamlit as st
3
  st.title("Grammar Corrector")
4
  st.write("Paste or type text, submit and the machine will attempt to correct your text's grammar.")
5
 
6
- default_text = " Lastly, another reason we will need clear procedures so that customers do not exploit our refund policy."
7
  sent = st.text_area("Text", default_text, height=40)
8
  num_correct_options = st.number_input('Number of Correction Options', min_value=1, max_value=3, value=1, step=1)
9
 
 
3
  st.title("Grammar Corrector")
4
  st.write("Paste or type text, submit and the machine will attempt to correct your text's grammar.")
5
 
6
+ default_text = "In conclusion,if anyone has some problem the customers must be returned."
7
  sent = st.text_area("Text", default_text, height=40)
8
  num_correct_options = st.number_input('Number of Correction Options', min_value=1, max_value=3, value=1, step=1)
9