From 0cd417ef1a8ebbe267adbac0dacb8e4f38b36049 Mon Sep 17 00:00:00 2001 From: Ken Williams Date: Thu, 9 Jan 2014 07:32:32 -0600 Subject: [PATCH] Fix the require_once() example, fold a long line --- api/class.api.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/class.api.php b/api/class.api.php index bd76f11463..04032c8769 100644 --- a/api/class.api.php +++ b/api/class.api.php @@ -5,7 +5,7 @@ * This class allows to consume the API, either from within a module that knows civicrm already: * * @code - * require_once('api/class/api.php'); + * require_once('api/class.api.php'); * $api = new civicrm_api3(); * @endcode * @@ -20,7 +20,9 @@ * or to query a remote server via the rest api * * @code - * $api = new civicrm_api3 (array ('server' => 'http://example.org','api_key'=>'theusersecretkey','key'=>'thesitesecretkey')); + * $api = new civicrm_api3 (array ('server' => 'http://example.org', + * 'api_key'=>'theusersecretkey', + * 'key'=>'thesitesecretkey')); * @endcode * * No matter how initialised and if civicrm is local or remote, you use the class the same way. -- 2.25.1