Skip to content

Commit 7a265dd

Browse files
fix snippet tag placement
1 parent 5f8c710 commit 7a265dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CustomVision/ObjectDetection/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ static void Main(string[] args)
2525
string predictionKey = Environment.GetEnvironmentVariable("CUSTOM_VISION_PREDICTION_KEY");
2626
// </snippet_keys>
2727

28+
// <snippet_create>
2829
// Create the Api, passing in the training key
2930
CustomVisionTrainingClient trainingApi = new CustomVisionTrainingClient()
3031
{
3132
ApiKey = trainingKey,
3233
Endpoint = ENDPOINT
3334
};
3435

35-
// <snippet_create>
3636
// Find the object detection domain
3737
var domains = trainingApi.GetDomains();
3838
var objDetectionDomain = domains.FirstOrDefault(d => d.Type == "ObjectDetection");

0 commit comments

Comments
 (0)