diff --git a/HISTORY.rst b/HISTORY.rst index d073b8a..99e19bc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,8 +2,8 @@ History ======= -.. v0.1.3 (unreleased) -.. --------------------- +v0.1.3 (unreleased) +--------------------- .. Breaking changes .. ~~~~~~~~~~~~~~~~ @@ -14,8 +14,10 @@ History .. Bug fixes .. ~~~~~~~~~ -.. Documentation -.. ~~~~~~~~~~~~~ +Documentation +~~~~~~~~~~~~~ +- Fix an error in stairs plot in shearstrain notebook (:pull:`112`). + :issue:`111` by `Ole Pinner `_. .. Internal Changes .. ~~~~~~~~~~~~~~~~ diff --git a/docs/shearstrain.ipynb b/docs/shearstrain.ipynb index 2f04262..df1b2c1 100644 --- a/docs/shearstrain.ipynb +++ b/docs/shearstrain.ipynb @@ -334,7 +334,7 @@ " (\n", " [np.min(depth_bin) - dz / 2],\n", " 0.5 * (depth_bin[1:] + depth_bin[:-1]),\n", - " [np.max(depth_bin) - dz / 2],\n", + " [np.max(depth_bin) + dz / 2],\n", " )\n", ")\n", "fig, ax = plt.subplots(nrows=1, ncols=2, figsize=(6, 4), sharey=True, constrained_layout=True)\n",