diff --git a/developer-handbook.md b/developer-handbook.md index e73858e0..a2cb24e6 100644 --- a/developer-handbook.md +++ b/developer-handbook.md @@ -357,8 +357,8 @@ the user almost certainly wants to know about it. ```oxTrace``` and ```oxTracef```: ```cpp void f(int x, int y) { // x = 9, y = 4 - oxTrace("nostalgia::core::sdl::gfx") << "f:" << x << y; // Output: "f: 9 4" - oxTracef("nostalgia::core::sdl::gfx", "f: {}, {}", x, y); // Output: "f: 9, 4" + oxTrace("nostalgia.core.sdl.gfx") << "f:" << x << y; // Output: "f: 9 4" + oxTracef("nostalgia.core.sdl.gfx", "f: {}, {}", x, y); // Output: "f: 9, 4" } ``` @@ -636,4 +636,3 @@ ox::Result writeSpritePalette(NostalgiaPalette const&pal) noexcept { return ox::writeClaw(pal); } ``` -