Merge pull request #1 from Oddity/patch-1

Fix typo in README usage example.
This commit is contained in:
Marc Lepage 2012-08-03 06:35:32 -07:00
commit d1f10ffd8c

2
README
View File

@ -18,7 +18,7 @@ map = heightmap.create(32, 32)
-- examine each height value
for x = 0, map.w do
for y = 0, map.y do
for y = 0, map.h do
print(map[x][y])
end
end