Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
not-elm committed Feb 15, 2025
1 parent 524aa72 commit 0a16925
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tool/api/src/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export namespace log {
});

/**
* Requests to execute `log!` on main process.
* Requests to execute `log::trace!` on main process.
*
* @example
* import {log} from "bevy_flurx_api";
Expand All @@ -22,7 +22,7 @@ export namespace log {
export const trace = (message: any) => emitLog(message, "trace");

/**
* Requests to execute `log!` on main process.
* Requests to execute `log::info!` on main process.
*
* @example
* import {log} from "bevy_flurx_api";
Expand All @@ -31,7 +31,7 @@ export namespace log {
export const info = (message: any) => emitLog(message, "info");

/**
* Requests to execute `log!` on main process.
* Requests to execute `log::warn!` on main process.
*
* @example
* import {log} from "bevy_flurx_api";
Expand All @@ -40,7 +40,7 @@ export namespace log {
export const warn = (message: any) => emitLog(message, "warn");

/**
* Requests to execute `log!` on main process.
* Requests to execute `log::error!` on main process.
*
* @example
* import {log} from "bevy_flurx_api";
Expand Down

0 comments on commit 0a16925

Please sign in to comment.