Переглянути джерело

mailx: Improve the readability of the descriptions

Starbeamrainbowlabs 8 роки тому
батько
коміт
092294370d
1 змінених файлів з 3 додано та 3 видалено
  1. 3 3
      pages/common/mailx.md

+ 3 - 3
pages/common/mailx.md

@@ -2,15 +2,15 @@
 
 
 > Send and receive mail.
 > Send and receive mail.
 
 
-- To send mail, the content is typed after the command and ended with Control-D:
+- To send mail, the body is typed after the command and ended with Control-D:
 
 
 `mailx -s "{{subject}}" {{to_addr}}`
 `mailx -s "{{subject}}" {{to_addr}}`
 
 
-- Send mail with short content:
+- Send mail with a short body:
 
 
 `echo "{{content}}" | mailx -s "{{subject}}" {{to_addr}}`
 `echo "{{content}}" | mailx -s "{{subject}}" {{to_addr}}`
 
 
-- Send mail with content which written in a file:
+- Send mail with a body from a file:
 
 
 `mailx -s "{{subject}}" {{to_addr}} < {{content.txt}}`
 `mailx -s "{{subject}}" {{to_addr}} < {{content.txt}}`