From 3f26d9e7ebadb145fde8d5dcc60429c7ba4c2399 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 5 Mar 2023 20:23:24 +0100 Subject: refactor: clarify name of the gl_command replaced ident --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 555cd58..653935a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,7 +14,7 @@ mod repeat; mod str; mod token_stream; -const OPENGL_CMD_IDENT_REPLACE: &str = "gl_command"; +const OPENGL_CMD_NAME_REPLACE: &str = "gl_command_name"; const OPENGL_CMD_RET_TYPE_REPLACE: &str = "gl_command_ret_type"; const OPENGL_CMD_ARGS_REPLACE: &str = "gl_command_args"; const OPENGL_CMD_ARG_NAMES_REPLACE: &str = "gl_command_arg_names"; @@ -29,7 +29,7 @@ static OPENGL_REGISTRY: Lazy = Lazy::new(|| Registry::retrieve().unwra /// /// ### The following identifiers will be replaced /// -/// **`gl_command`**
+/// **`gl_command_name`**
/// Will be replaced by the full command name. For example, `glViewport`. /// /// **`gl_command_ret_type`**
@@ -49,9 +49,9 @@ static OPENGL_REGISTRY: Lazy = Lazy::new(|| Registry::retrieve().unwra /// ``` /// # use opengl_registry_macros::for_each_opengl_command; /// for_each_opengl_command! { -/// fn #gl_command() +/// fn #gl_command_name() /// { -/// println!("Hello from {}", stringify!(#gl_command)); +/// println!("Hello from {}", stringify!(#gl_command_name)); /// } /// } /// ``` -- cgit v1.2.3-18-g5258