Fix typo in Graph/addDataPoint #97

Merged
cyberbit merged 1 commits from patch-1 into master 2023-10-05 23:13:47 +08:00

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