Skip to content

опечатки #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions notes/1 - Ruby history and basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -282,7 +282,7 @@ exit


## Git and SVN
* git initn
* git init
* git add
* git commit
* git branch
Expand Down