Skip to content

Commit

Permalink
Tpo fixes in documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinnegatamante committed Sep 5, 2021
1 parent cadb240 commit 9e0906f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,10 @@ jobs:
run: |
cd doc
doxygen
cp search.js html/search/search.js
echo "<script id=\"searchdata\" type=\"text/xmldata\">" >> html/search.html
cat searchdata.xml >> html/search.html
echo "</script>" >> html/search.html
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.4
if: contains(github.ref,'refs/heads/master')
with:
branch: gh-pages
folder: docs
folder: doc/html
clean: false
2 changes: 1 addition & 1 deletion doc/luaCamera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ class Camera {
*
* @param mode - Mode to set.
*/
void setNightmode(CameraNightmode value);
void setNightmode(CameraNightmode mode);

/**
* Get current camera nightmode mode.
Expand Down
2 changes: 1 addition & 1 deletion doc/luaGraphics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class Graphics {
* @param rad - Radius size of the circle.
* @param color - A valid color (See ::Color).
*/
void fillCircle(number x1, number y1, number rad, int color);
void fillCircle(number x, number y, number rad, int color);

/**
* Create an empty image.
Expand Down

0 comments on commit 9e0906f

Please sign in to comment.