mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-08-03 15:15:37 +00:00
No unused fn params
This commit is contained in:
parent
f9a1956d88
commit
aa733dc3ef
|
@ -43,5 +43,6 @@ pub fn main() void {
|
||||||
|
|
||||||
fn getPageTitle(url: []const u8) []const u8 {
|
fn getPageTitle(url: []const u8) []const u8 {
|
||||||
// Please PRETEND this is actually making a network request.
|
// Please PRETEND this is actually making a network request.
|
||||||
|
_ = url;
|
||||||
return "Example Title.";
|
return "Example Title.";
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,5 +49,6 @@ pub fn main() void {
|
||||||
|
|
||||||
fn getPageTitle(url: []const u8) []const u8 {
|
fn getPageTitle(url: []const u8) []const u8 {
|
||||||
// Please PRETEND this is actually making a network request.
|
// Please PRETEND this is actually making a network request.
|
||||||
|
_ = url;
|
||||||
return "Example Title";
|
return "Example Title";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user