Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typos #407

Merged
merged 2 commits into from
Jul 29, 2019
Merged

Typos #407

Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/HowTo/ProfileCode.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: "default"
---
### How-To Profile Code

Once you've setup MiniProfiler, there are several ways to profile code. MiniProfiler is generally setup as 1 profiler per "action" (e.g. an HTTP Request, or startup, or some job) of an application. Inside that profiler, there are steps. Inside steps, you can also have custom timings. The general stucture is:
Once you've setup MiniProfiler, there are several ways to profile code. MiniProfiler is generally setup as 1 profiler per "action" (e.g. an HTTP Request, or startup, or some job) of an application. Inside that profiler, there are steps. Inside steps, you can also have custom timings. The general structure is:

* Profiler
* Root Timing (generally unused, but it's there)
Expand Down Expand Up @@ -88,4 +88,4 @@ using (MiniProfiler.Current.Ignore())
// stuff we really don't care about - maybe a library that does a lot of profiling, etc.
// in here, no timings would be recorded
}
```
```
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Once you're setup, see [**how to profile code**]({{ site.baseurl }}/HowTo/Profil

#### About

MiniProfiler is a library and UI for profiling your application. By letting you see where you time is spent, which queries are run, and any other custom timings you want to add, MiniProfiler helps you debug issues and optimize performance.
MiniProfiler is a library and UI for profiling your application. By letting you see where your time is spent, which queries are run, and any other custom timings you want to add, MiniProfiler helps you debug issues and optimize performance.

The default setup is for every page to have an indicator so performance is always on your mind, like this:

Expand Down