Typo in markup (#617)

There was a backtick where it should have been an asterisk.
This commit is contained in:
Petr Hudeček 2017-06-05 21:52:43 +02:00 committed by Neal Gafter
parent 231bb29811
commit 1bbcfb2378

View file

@ -465,7 +465,7 @@ namespace N2
Above, within member declarations in the `N2` namespace, the static members and nested types of `N1.A` are directly available, and thus the method `N` is able to reference both the `B` and `M` members of `N1.A`.
A *using_static_directive` specifically does not import extension methods directly as static methods, but makes them available for extension method invocation ([Extension method invocations](expressions.md#extension-method-invocations)). In the example
A *using_static_directive* specifically does not import extension methods directly as static methods, but makes them available for extension method invocation ([Extension method invocations](expressions.md#extension-method-invocations)). In the example
```csharp
namespace N1