Skip to content
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.

Commit

Permalink
minor refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
fperrad committed Jul 22, 2010
1 parent 0c353d4 commit 2ba70d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Coat/Persistent.lua
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function save (class, obj)
for field in Meta.attributes(class) do
local val = obj[field]
if val ~= nil then
values[field] = tostring(obj[field])
values[field] = tostring(val)
end
end

Expand Down

0 comments on commit 2ba70d7

Please sign in to comment.