diff --git a/GetElementById.md b/GetElementById.md index 86d50d7..44a53e1 100644 --- a/GetElementById.md +++ b/GetElementById.md @@ -1,6 +1,8 @@ ```cpp -void* Crafter::CppDOM::Bindings::GetElementById(const char* id, std::size_t idLenght); -void* Crafter::CppDOM::Bindings::GetElementById(const std::string& id); +namespace Crafter::CppDOM::Bindings { + void* GetElementById(const char* id, std::size_t idLenght); + void* GetElementById(const std::string& id); +} ``` Accepts an id string and returns a void* to a JS object.