diff --git a/docs/en/index.md b/docs/en/index.md index b2fbeca15..0e81374ca 100644 --- a/docs/en/index.md +++ b/docs/en/index.md @@ -48,7 +48,7 @@ Please read our [guide to contributing documentation](misc/contributing#writing- * [RSS Feeds](reference/rssfeed) * [Debugging](topics/debugging) * [Errorhandling](topics/error-handling) -* [Testing Guide](topics/testing/testing-guide): Framework for automated testing like Unittests +* [Testing Guide](topics/testing/): Framework for automated testing like Unittests * [Built-in Page Controls](reference/built-in-page-controls) * [Execution Pipeline](reference/execution-pipeline): Tracking a request from director to template-rendering * [Recipes/Howtos](howto/) diff --git a/docs/en/installation/from-source.md b/docs/en/installation/from-source.md index 2d974e968..075e07c1f 100644 --- a/docs/en/installation/from-source.md +++ b/docs/en/installation/from-source.md @@ -10,7 +10,7 @@ is not already fixed. For getting a project up and running quickly with a release, you are typically best off with the official [silverstripe.org/download](http://silverstripe.org/download). If you want to get the "latest and greatest" pre-release code (either -on a release brank, or on "trunk"), you need to use our version control. +on a release branch, or on "trunk"), you need to use our version control.
**Warning**: These instructions are for intermediate to advanced users only, diff --git a/docs/en/topics/debugging.md b/docs/en/topics/debugging.md index 5eb801d1c..cc2621c3e 100644 --- a/docs/en/topics/debugging.md +++ b/docs/en/topics/debugging.md @@ -106,7 +106,7 @@ The Debug class contains a number of static methods * *Debug::show($myVariable)*: performs a kind of *print_r($myVariable)*, but shows it in a more useful format. * *Debug::message("Wow, that's great")*: prints a short debugging message. * *SS_Backtrace::backtrace()* (2.3: *Debug::backtrace()*): prints a calls-stack -* *Debug::sendLiveErrorsTo("sam@silverstripe.com")*: On the live site, all errors will get sent to this address. +* *Debug::send_errors_to("sam@silverstripe.com")*: All errors will get sent to this address. ### Error handling