README.md in expand-1.0.0 vs README.md in expand-1.0.1
- old
+ new
@@ -1,6 +1,6 @@
-# Epand
+# Expand
Use Expand to create classes or modules under an existing namespace.
Defining new classes or modules under an existing namespace can be confusing. Using class_eval doesn't work like you think it would.
@@ -23,10 +23,10 @@
```ruby
reuire 'expand'
extend Expand
-namespace 'SomeGem::Thing' do
+namespace SomeGem::Thing do
create_class :NewThing do
# define methods here
end
end