From 6aee5c301cd6bafc63ee034b6771711c947e1e9f Mon Sep 17 00:00:00 2001 From: Guru Mehar Rachaputi Date: Tue, 25 Jun 2024 18:12:59 +0200 Subject: [PATCH] modified location reference in example code Signed-off-by: Guru Mehar Rachaputi --- examples/basic/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/basic/main.cpp b/examples/basic/main.cpp index f809246b7..d1d89167d 100644 --- a/examples/basic/main.cpp +++ b/examples/basic/main.cpp @@ -11,8 +11,8 @@ int main() const auto id = faker::String::uuid(); const auto email = faker::Internet::email(); const auto password = faker::Internet::password(); - const auto city = faker::Location::city(); - const auto streetAddress = faker::Location::streetAddress(); + const auto city = faker::location::city(); + const auto streetAddress = faker::location::streetAddress(); std::cout << id << std::endl; std::cout << email << std::endl;