diff --git a/pages/roblox/2-examples.md b/pages/roblox/2-examples.md
index eb83365..91de23b 100644
--- a/pages/roblox/2-examples.md
+++ b/pages/roblox/2-examples.md
@@ -26,8 +26,8 @@ for _, descendant in workspace:GetDescendants() do
 end
 
 -- Save the DataModel (game) back to the file that we read it from
-file = roblox.serializePlace("myPlaceFile.rbxl")
-fs.writeFile(file)
+file = roblox.serializePlace(game)
+fs.writeFile("myPlaceFile.rbxl", file)
 ```
 
 ---