Skip to content

Commit 88d6011

Browse files
fix typo (#140)
1 parent 260ea3c commit 88d6011

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/USAGE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ The following steps demonstrate how to use the Microsoft.ReactNative.WinRT NuGet
6868
- When running Debug, you may see the error: "ReferenceError: Windows is not defined". The browser debugger is not supported with React Native Windows, so you may need to change this line in `App.cpp`:
6969

7070
```cpp
71-
`InstanceSettings().UseWebDebugger(true);`
71+
InstanceSettings().UseWebDebugger(true);
7272
```
7373
to this:
7474
```cpp
75-
`InstanceSettings().UseWebDebugger(false);`
75+
InstanceSettings().UseWebDebugger(false);
7676
```

0 commit comments

Comments
 (0)