Fixing typo (#21081)
authorAyende Rahien <ayende@ayende.com>
Sat, 24 Nov 2018 15:18:36 +0000 (17:18 +0200)
committerJan Kotas <jkotas@microsoft.com>
Sat, 24 Nov 2018 15:18:36 +0000 (07:18 -0800)
Documentation/project-docs/linux-performance-tracing.md

index 2f97fb3..523ed90 100644 (file)
@@ -146,14 +146,14 @@ what is going on in the NATIVE runtime dlls (typically libcoreclr.so), is intere
 symbols for these when it converts its data, but ONLY if the symbols for these native DLLs are present (and are beside
 the library they are for).   
 
-There is a global command called [dotnet symbols](https://github.com/dotnet/symstore/blob/master/src/dotnet-symbol/README.md#symbol-downloader-dotnet-cli-extension) which does this.   This tool was mostly desiged to download symbols
-for debugging, but it works for perfollect as well.  There are three steps to getting the symbols
+There is a global command called [dotnet symbol](https://github.com/dotnet/symstore/blob/master/src/dotnet-symbol/README.md#symbol-downloader-dotnet-cli-extension) which does this.   This tool was mostly desiged to download symbols
+for debugging, but it works for perfcollect as well.  There are three steps to getting the symbols
 
-   1. Install dotnet symbols
+   1. Install dotnet symbol
    2. Download the symbols.
    3. Copy the symbols to the correct place 
 
-To install dotnet symbols issue the command 
+To install dotnet symbol issue the command 
 ```
      dotnet tool install -g dotnet-symbol
 ```
@@ -161,7 +161,7 @@ With that installed download the symbols to a local directory.  if your installe
 2.1.0 the command to do this is 
 ```
     mkdir mySymbols
-    dotnet symbols --symbols --output mySymbols  /usr/share/dotnet/shared/Microsoft.NETCore.App/2.1.0/lib*.so
+    dotnet symbol --symbols --output mySymbols  /usr/share/dotnet/shared/Microsoft.NETCore.App/2.1.0/lib*.so
 ```
 Now all the symbols for those native dlls are in mySymbols.   You then have to copy them (as super user next to the 
 dlls that they are for.