Fix typo in Graph/addDataPoint

This commit is contained in:
cyberbit
2023-07-26 22:38:20 -05:00
committed by GitHub
parent 42aa1059cf
commit a725909704

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)
```