fix(typo): nit language corrections (#90)

This commit is contained in:
Jonathan Hendler 2025-04-03 18:20:48 -10:00 committed by GitHub
parent 6a74451c15
commit 2744cde0d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -18,14 +18,14 @@ impl Calculator {
(a + b).to_string()
}
#[tool(description = "Calculate the sum of two numbers")]
#[tool(description = "Calculate the sub of two numbers")]
fn sub(
&self,
#[tool(param)]
#[schemars(description = "the left hand side number")]
a: i32,
#[tool(param)]
#[schemars(description = "the left hand side number")]
#[schemars(description = "the right hand side number")]
b: i32,
) -> String {
(a - b).to_string()

View file

@ -14,14 +14,14 @@ impl Calculator {
(a + b).to_string()
}
#[tool(description = "Calculate the sum of two numbers")]
#[tool(description = "Calculate the sub of two numbers")]
fn sub(
&self,
#[tool(param)]
#[schemars(description = "the left hand side number")]
a: i32,
#[tool(param)]
#[schemars(description = "the left hand side number")]
#[schemars(description = "the right hand side number")]
b: i32,
) -> String {
(a - b).to_string()

View file

@ -18,14 +18,14 @@ impl Calculator {
(a + b).to_string()
}
#[tool(description = "Calculate the sum of two numbers")]
#[tool(description = "Calculate the sub of two numbers")]
fn sub(
&self,
#[tool(param)]
#[schemars(description = "the left hand side number")]
a: i32,
#[tool(param)]
#[schemars(description = "the left hand side number")]
#[schemars(description = "the right hand side number")]
b: i32,
) -> String {
(a - b).to_string()