diff --git a/docs.html b/docs.html
index 8491bca0..26ddf18e 100644
--- a/docs.html
+++ b/docs.html
@@ -796,7 +796,7 @@ which is one of:
fill::zeros | ↦ | set all elements to 0 (default operation) |
fill::ones | ↦ | set all elements to 1 |
fill::nan | ↦ | set all elements to NaN |
-fill::pos_inf | ↦ | set all elements to +infinity |
+fill::inf | ↦ | set all elements to +infinity |
fill::neg_inf | ↦ | set all elements to -infinity |
fill::value(scalar) | ↦ | set all elements to the specified scalar |
fill::eye | ↦ | set elements on the main diagonal to 1 and off-diagonal elements to 0 |
@@ -1755,7 +1755,7 @@ which is one of:
fill::zeros | ↦ | set all elements to 0 (default operation) |
fill::ones | ↦ | set all elements to 1 |
fill::nan | ↦ | set all elements to NaN |
-fill::pos_inf | ↦ | set all elements to +infinity |
+fill::inf | ↦ | set all elements to +infinity |
fill::neg_inf | ↦ | set all elements to -infinity |
fill::value(scalar) | ↦ | set all elements to the specified scalar |
fill::randu | ↦ | set elements to random values from a uniform distribution in the [0,1] interval |
@@ -20772,7 +20772,7 @@ List of additions and changes for each version:
Version 15.4:
-- added fill::nan, fill::pos_inf, fill::neg_inf as optional fill forms for the Mat class
+- added fill::nan, fill::inf, fill::neg_inf as optional fill forms for the Mat class
- added .push_back() for appending elements to vectors
- faster handling of find() within .elem()
- faster element-wise min() and max()