Skip to content

Commit

Permalink
Update home.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Dec 28, 2024
1 parent 08b5e0a commit 2729aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pages/src/views/home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ UUID[] uuids = new UUID[1000];
uuids.Fill(); // Efficiently fills array with new UUIDs
// Generate with error handling
if (UUID.TryGenerate(1000, out UUID[]? result))
if (ArrayExtension.TryGenerate(1000, out UUID[]? result))
{
// Use the generated UUIDs
foreach (var uuid in result)
Expand Down

0 comments on commit 2729aa2

Please sign in to comment.