point 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/point.rb +1 -1
- data/lib/point/base.rb +1 -1
- metadata +1 -1
data/lib/point.rb
CHANGED
data/lib/point/base.rb
CHANGED
@@ -26,7 +26,7 @@ module Point
|
|
26
26
|
when :all then find_all(params)
|
27
27
|
when Integer then find_single(type, params)
|
28
28
|
when String then find_all(params).select {|r| r.attributes["name"] == type}.first
|
29
|
-
else raise Point::Error, "Find requires :all, a string or an integer.
|
29
|
+
else raise Point::Error, "Find requires :all, a string or an integer."
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|