From 57f00398255248044e4f66073b79e284a59f8a56 Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Wed, 15 Feb 2017 19:51:20 +0100 Subject: [PATCH] [BridgeAbstract] Remove mentions of 'loadMetadatas' --- BridgeAbstract.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BridgeAbstract.md b/BridgeAbstract.md index 98ddd8d..a425620 100644 --- a/BridgeAbstract.md +++ b/BridgeAbstract.md @@ -184,9 +184,9 @@ This function returns the description of a bridge. ## The `getName` function -This function returns the name of the bridge as it will be displayed on the main page of **RSS-Bridge** or on top of the feed output (HTML, ATOM, etc...). +This function returns the name of a bridge.. -**Notice:** **RSS-Bridge** will by default return `const NAME` which is defined in the [`loadMetadatas`](#the-loadmetadatas-function) function, so you only have to implement this function if you require different behavior! +**Notice:** **RSS-Bridge** will by default return `const NAME` which is defined in the bridge, so you only have to implement this function if you require different behavior! ```PHP public function getName(){ @@ -196,9 +196,9 @@ This function returns the name of the bridge as it will be displayed on the main ## The `getURI` function -This function returns the URI to the destination site of the bridge. It will be used on the main page of rss-bridge when clicking your bridge name. +This function returns the URI to the destination site of a bridge. -**Notice:** **RSS-Bridge** will by default return `const URI` which is defined in the [`loadMetadatas`](#the-loadmetadatas-function) function, so you only have to implement this function if you require different behavior! +**Notice:** **RSS-Bridge** will by default return `const URI` which is defined in the bridge, so you only have to implement this function if you require different behavior! ```PHP public function getURI(){