From e924f79f64d0d547cf7b40f3eca4c91e448c2f4d Mon Sep 17 00:00:00 2001 From: beardymn Date: Sun, 11 Oct 2015 14:06:42 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BE=D0=BF=D0=B5=D1=87=D0=B0=D1=82=D0=BA?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit исправлены опечатки --- notes/1 - Ruby history and basics.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notes/1 - Ruby history and basics.md b/notes/1 - Ruby history and basics.md index 5f1fa86..72afe3d 100644 --- a/notes/1 - Ruby history and basics.md +++ b/notes/1 - Ruby history and basics.md @@ -73,10 +73,10 @@ a += 1 # Ruby won't automatically make a number into a String. # You must do it manually by calling the "to_s" built in function puts "a now = " + a => Exception -a_value = a_value + a_value +a_value = a_value + a_value #что это? puts "a_value now = " + a_value.to_s # % + - * / and so on but here is the best way: -puts "a_value now = #{ a_value.to_s }" +puts "a_value now = #{ a_value }" ``` ### Strings and comments @@ -282,7 +282,7 @@ exit ## Git and SVN -* git initn +* git init * git add * git commit * git branch