Skip to content

Commit 6346e76

Browse files
committed
Fixed quote
1 parent 04a353d commit 6346e76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-debug-managed-online-endpoints-visual-studio-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ At this point, any breakpoints in your `run` function are caught. Use the debug
313313
314314
Now that your application is running in the debugger, try making a prediction to debug your scoring script.
315315
316-
Use the`invoke` method on your `MLClient` object to make a request to your local endpoint.
316+
Use the `invoke` method on your `MLClient` object to make a request to your local endpoint.
317317
318318
```python
319319
endpoint = ml_client.online_endpoints.get(name=endpoint_name, local=True)
@@ -337,7 +337,7 @@ In this case, `<REQUEST-FILE>` is a JSON file that contains input data samples f
337337
>
338338
> ```python
339339
> endpoint = ml_client.online_endpoints.get(endpoint_name, local=True)
340-
endpoint.as_dict()
340+
> endpoint.as_dict()
341341
> ```
342342
>
343343
> The output should look similar to the following:

0 commit comments

Comments
 (0)