From 7d3e4883be6f431ad57a49ee2c0376f95a74b28c Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Wed, 17 Jul 2024 15:07:22 -0700 Subject: [PATCH] Fix region tag. (#191) --- samples/FunctionCalling.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/FunctionCalling.swift b/samples/FunctionCalling.swift index 020d5d4..d4fe423 100644 --- a/samples/FunctionCalling.swift +++ b/samples/FunctionCalling.swift @@ -31,7 +31,7 @@ final class FunctionCallingSnippets: XCTestCase { } func testFunctionCalling() async throws { - // [BEGIN function_calling] + // [START function_calling] // Calls a hypothetical API to control a light bulb and returns the values that were set. func controlLight(brightness: Double, colorTemperature: String) -> JSONObject { return ["brightness": .number(brightness), "colorTemperature": .string(colorTemperature)]