Consistently have the namespace closing comment
[folly.git] / folly / Array.h
index 40778564fcf5848959d717725407f8bf8f4fffa6..8b2e7c05b1f630700c5728b6c6526a76acdc886e 100644 (file)
@@ -47,7 +47,7 @@ struct return_type_helper<void, TList...> {
 template <typename D, typename... TList>
 using return_type = std::
     array<typename return_type_helper<D, TList...>::type, sizeof...(TList)>;
-} // !array_detail
+} // namespace array_detail
 
 template <typename D = void, typename... TList>
 constexpr array_detail::return_type<D, TList...> make_array(TList&&... t) {
@@ -56,4 +56,4 @@ constexpr array_detail::return_type<D, TList...> make_array(TList&&... t) {
   return {{static_cast<value_type>(std::forward<TList>(t))...}};
 }
 
-} // !folly
+} // namespace folly