From 62c77384eca64da6f8202551717577e5e06af832 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Sat, 6 Aug 2016 18:54:36 +0200 Subject: [PATCH] [CREATE_BRIDGE] Fix typos --- CREATE_BRIDGE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CREATE_BRIDGE.md b/CREATE_BRIDGE.md index 420248b..efe4286 100644 --- a/CREATE_BRIDGE.md +++ b/CREATE_BRIDGE.md @@ -165,7 +165,7 @@ This function returns the URI to the destination site of the bridge. It will be ```PHP public function getURI(){ - return $this-uri; + return $this->uri; } ``` @@ -202,7 +202,7 @@ Check the [list of error codes](https://en.wikipedia.org/wiki/List_of_HTTP_statu ## The `file_get_html` function -This function is a wrapper around the simple_html_dom file_get_html function in order to provide context by design. It is considered good practice to use this function. +This function is a wrapper around the [simple_html_dom](http://simplehtmldom.sourceforge.net/) [file_get_html](http://simplehtmldom.sourceforge.net/manual_api.htm#api) function in order to provide context by design. It is considered good practice to use this function. ```PHP $html = $this->file_get_html('your URI');