diff --git a/doc/hotspot-style.html b/doc/hotspot-style.html
index 36d0b098940..882f608450f 100644
--- a/doc/hotspot-style.html
+++ b/doc/hotspot-style.html
@@ -303,6 +303,7 @@ while ( test_foo(args...) ) { // No, excess spaces around control
Defaulted and deleted functions (n2346)
Dynamic initialization and destruction with concurrency (n2660)
final
virtual specifiers for classes and virtual functions (n2928), (n3206), (n3272)
+override
virtual specifiers for virtual functions (n2928), (n3206), (n3272)
Local and unnamed types as template parameters (n2657)
Range-based for
loops (n2930) (range-for)
@@ -330,7 +331,6 @@ while ( test_foo(args...) ) { // No, excess spaces around control
Undecided Features
This list is incomplete; it serves to explicitly call out some features that have not yet been discussed.
-overrides
virtual specifiers for virtual functions (n3272)
Trailing return type syntax for functions (n2541)
Variable templates (n3651)
Member initializers and aggregates (n3653)
diff --git a/doc/hotspot-style.md b/doc/hotspot-style.md
index 25c0dbc7793..c5a0eb9a681 100644
--- a/doc/hotspot-style.md
+++ b/doc/hotspot-style.md
@@ -747,6 +747,11 @@ part of the avoidance of the C++ Standard Library in HotSpot code.
([n3206](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3206.htm)),
([n3272](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3272.htm))
+* `override` virtual specifiers for virtual functions
+([n2928](http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2928.htm)),
+([n3206](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3206.htm)),
+([n3272](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3272.htm))
+
* Local and unnamed types as template parameters
([n2657](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm))
@@ -813,9 +818,6 @@ in HotSpot code because of the "no implicit boolean" guideline.)
This list is incomplete; it serves to explicitly call out some
features that have not yet been discussed.
-* `overrides` virtual specifiers for virtual functions
-([n3272](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3272.htm))
-
* Trailing return type syntax for functions
([n2541](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2541.htm))