Modfiededition commited on
Commit
98e102c
1 Parent(s): e0e5a49

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -23,8 +23,7 @@ st.subheader("Some examples: ")
23
  example_1 = st.button("I am write on AI")
24
  example_2 = st.button("This sentence has, bads grammar mistake!")
25
 
26
- # height=100, max_chars=1000
27
- textbox = st.text_input('Write your text in this box:', '',max_chars = 1000 )
28
 
29
  button = st.button('Detect grammar mistakes:')
30
 
 
23
  example_1 = st.button("I am write on AI")
24
  example_2 = st.button("This sentence has, bads grammar mistake!")
25
 
26
+ textbox = st.text_area('Write your text in this box:', '', height=100, max_chars=1000 )
 
27
 
28
  button = st.button('Detect grammar mistakes:')
29