From 15a7d91c1f10d7cf5abd840296657c4cbe1495a1 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 27 Feb 2023 12:30:22 -0700 Subject: [PATCH 1/2] Remove dangling reference to being a reference implementation --- synapse/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/synapse/__init__.py b/synapse/__init__.py index fbfd506a43d0..a203ed533ae5 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -1,5 +1,6 @@ # Copyright 2014-2016 OpenMarket Ltd -# Copyright 2018-9 New Vector Ltd +# Copyright 2018-2019 New Vector Ltd +# Copyright 2023 The Matrix.org Foundation C.I.C. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -13,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" This is a reference implementation of a Matrix homeserver. +""" This is an implementation of a Matrix homeserver. """ import json From 4f5abac8e2054fb83049b8b55ca6682171101346 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 27 Feb 2023 12:32:05 -0700 Subject: [PATCH 2/2] Create 15167.misc --- changelog.d/15167.misc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/15167.misc diff --git a/changelog.d/15167.misc b/changelog.d/15167.misc new file mode 100644 index 000000000000..175c2a3b8385 --- /dev/null +++ b/changelog.d/15167.misc @@ -0,0 +1 @@ +Remove dangling reference to being a reference implementation in docstring.