Fix typo in code example

This commit is contained in:
boyned//Kampfkarren 2021-11-05 13:30:28 -07:00
parent c9b1a915f7
commit b432671979

View file

@ -12,7 +12,7 @@ Currently, attempting to index `dog.name` while caring for `dog` being nil requi
```lua
local dogName = nil
if dog.name ~= nil then
if dog ~= nil then
dogName = dog.name
end
```