Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Fix typos in documentation #178

Merged
merged 1 commit into from
Mar 31, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ You can capture a message without being bound by an exception:
Additional Data
---------------

You can add additional data to the `Exception.Data <https://msdn.microsoft.com/en-us/library/system.exception.data.aspx>`
You can add additional data to the `Exception.Data <https://msdn.microsoft.com/en-us/library/system.exception.data.aspx>`_
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this underscore?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is the syntax in Restructured Text to make a link, see https://github.com/ralsina/rst-cheatsheet/blob/master/rst-cheatsheet.rst

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok.

property on exceptions thrown about in your solution:

.. sourcecode:: csharp
Expand All @@ -76,7 +76,7 @@ property on exceptions thrown about in your solution:
throw;
}

The data ``SomeKey`` and ``SomeValu`` will be captured and presented in the
The data ``SomeKey`` and ``SomeValue`` will be captured and presented in the
``extra`` property on Sentry.

Additionally, the ``SentryEvent`` class allow you to provide extra data to be
Expand Down Expand Up @@ -140,7 +140,7 @@ Sentry, all you have to do is add a requirement on ``IRavenClient`` in your clas
Breadcrumbs
-----------

Sentry supports a concept called `Breadcrumbs <https://docs.sentry.io/learn/breadcrumbs/>`, which is a trail of events which happened prior to an issue. Often times these events are very similar to traditional logs, but also have the ability to record more rich structured data.
Sentry supports a concept called `Breadcrumbs <https://docs.sentry.io/learn/breadcrumbs/>`_, which is a trail of events which happened prior to an issue. Often times these events are very similar to traditional logs, but also have the ability to record more rich structured data.

.. sourcecode:: csharp

Expand Down Expand Up @@ -171,7 +171,7 @@ Debugging SharpRaven
--------------------

If an exception is raised internally to ``RavenClient`` it is logged to the
``Consol``. To extend this behaviour use the property ``ErrorOnCapture``:
``Console``. To extend this behaviour use the property ``ErrorOnCapture``:

.. sourcecode:: csharp

Expand Down