소스 검색

Add colon to example descriptions

Marvin Johanning 7 년 전
부모
커밋
7754dfcda5
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      pages/common/ruby.md

+ 3 - 3
pages/common/ruby.md

@@ -10,14 +10,14 @@
 
 `ruby {{script.rb}}`
 
-- Execute a single command in the command line
+- Execute a single command in the command line:
 
 `ruby -e {{command}}`
 
-- Check if the given Ruby script is written correctly (Syntax check)
+- Check if the given Ruby script is written correctly (Syntax check):
 
 `ruby -c {{script.rb}}`
 
-- Show the version of Ruby you are using
+- Show the version of Ruby you are using:
 
 `ruby -v`