From 0c4a319200e80d0809f4b1dbfc676895352faf30 Mon Sep 17 00:00:00 2001 From: Jason Hutchens Date: Tue, 24 Apr 2012 23:25:46 +0800 Subject: [PATCH] minor updates to doc --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ae5d2c..0666d77 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ puts s.C1 # => 50 Bindings -------- -Soroban allows you to bind meaningful variable names to individual cells and to ranges of cells. When bound to a range, variables act as an array,. +Soroban allows you to bind meaningful variable names to individual cells and to ranges of cells. When bound to a range, variables act as an array. ```ruby s.set(:A1 => 'hello', 'B1:B5' => [1,2,3,4,5]) @@ -77,7 +77,7 @@ s.set("D1:D5" => [1,2,3,4,5]) s.missing # => [] -s.cells # => {"F1"=>"= E1 + SUM(D1:D5)", "E1"=>"= D1 ^ D2", "D1"=>"1", "D2"=>"2", "D3"=>"3", "D4"=>"4", "D5"=>"5"} +s.cells # => {:F1=>"= E1 + SUM(D1:D5)", :E1=>"= D1 ^ D2", :D1=>"1", :D2=>"2", :D3=>"3", :D4=>"4", :D5=>"5"} ``` Importers