Skip to content

Commit 4d2bbdd

Browse files
authored
Merge pull request #193 from PatrickFarley/patch-2
fix snippet tag placement
2 parents 7716c1a + 7a265dd commit 4d2bbdd

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)