Skip to content

Commit

Permalink
fix(docs): typo and builder failing?
Browse files Browse the repository at this point in the history
  • Loading branch information
jeertmans committed Mar 6, 2024
1 parent d579204 commit 7968c24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build:
post_system_dependencies:
- nohup Xvfb $DISPLAY -screen 0 1400x900x24 -dpi 96 +extension RANDR +render &
sphinx:
builder: dirhtml
builder: html
configuration: docs/source/conf.py
fail_on_warning: true
python:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/notebooks/plotting_backend.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
"import numpy as np\n",
"\n",
"vx = mesh.vertices[..., 0]\n",
"vy = mesh.vertices[..., 0]\n",
"vy = mesh.vertices[..., 1]\n",
"x = np.linspace(np.min(vx), np.max(vx))\n",
"y = np.linspace(np.min(vy), np.max(vy))\n",
"X, Y = np.meshgrid(x, y)\n",
Expand Down

0 comments on commit 7968c24

Please sign in to comment.