diff --git a/include/nlohmann/detail/output/output_adapters.hpp b/include/nlohmann/detail/output/output_adapters.hpp
index 937af697..77fe7cc6 100644
--- a/include/nlohmann/detail/output/output_adapters.hpp
+++ b/include/nlohmann/detail/output/output_adapters.hpp
@@ -97,8 +97,6 @@ class output_string_adapter : public output_adapter_protocol<CharType>
   private:
     StringType& str;
 };
-/// dump to alternative string type, as defined in basic_json template
-/// see https://github.com/nlohmann/json/pull/1006
 template<typename CharType, typename StringType = std::basic_string<CharType>>
 class output_adapter
 {
diff --git a/single_include/nlohmann/json.hpp b/single_include/nlohmann/json.hpp
index 553284be..b8b1ba46 100644
--- a/single_include/nlohmann/json.hpp
+++ b/single_include/nlohmann/json.hpp
@@ -12208,8 +12208,6 @@ class output_string_adapter : public output_adapter_protocol<CharType>
   private:
     StringType& str;
 };
-/// dump to alternative string type, as defined in basic_json template
-/// see https://github.com/nlohmann/json/pull/1006
 template<typename CharType, typename StringType = std::basic_string<CharType>>
 class output_adapter
 {