1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* remove trailing spaces.

This commit is contained in:
git 2019-06-26 01:53:19 +09:00
parent 0bd5f846df
commit dd57442f74

View file

@ -115,7 +115,7 @@ Using +eval+ to evaluate Ruby code will allow access to local variables in
the same scope, even if the local variables are not assigned until after the the same scope, even if the local variables are not assigned until after the
call to +eval+. However, local variables assigned inside the call to +eval+ call to +eval+. However, local variables assigned inside the call to +eval+
will not be reflected in the surrounding scope. Inside the call to +eval+, will not be reflected in the surrounding scope. Inside the call to +eval+,
local variables in the scope and local variables assigned inside the call to local variables in the scope and local variables assigned inside the call to
+eval+ will be accessible. However, you will not be able to access local +eval+ will be accessible. However, you will not be able to access local
variables assigned in previous or subsequent calls to +eval+ in the same variables assigned in previous or subsequent calls to +eval+ in the same
scope. Consider each +eval+ call a separate nested scope. Example: scope. Consider each +eval+ call a separate nested scope. Example: