diff --git a/Home.md b/Home.md index 5b34ca4..5e39622 100644 --- a/Home.md +++ b/Home.md @@ -25,9 +25,9 @@ function love.load() end function love.update(dt) - nk.frame_begin() + nk.frameBegin() -- Add UI code here - nk.frame_end() + nk.frameEnd() end function love.draw() @@ -77,7 +77,7 @@ function love.wheelmoved(x, y) end ``` -Put your UI code between the `nk.frame_begin` and `nk.frame_end` calls. See the bundled [example](https://github.com/keharriso/love-nuklear/tree/master/example) for a brief sample of what the library can do. +Put your UI code between the `nk.frameBegin` and `nk.frameEnd` calls. See the bundled [example](https://github.com/keharriso/love-nuklear/tree/master/example) for a brief sample of what the library can do. ## Documentation