Fix typo in Graph/addDataPoint (#97)

This commit is contained in:
cyberbit
2023-10-05 10:13:47 -05:00
committed by GitHub
parent 8d4e96a128
commit 1c7558d133

View File

@@ -19,5 +19,5 @@ Sets a data point in the graph with specified value.
```lua
local mainFrame = basalt.createFrame()
local aGraph = mainFrame:addGraph()
aGraph:setDataPoint(13)
aGraph:addDataPoint(13)
```