aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs8
1 files changed, 4 insertions, 4 deletions
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<Registry> = Lazy::new(|| Registry::retrieve().unwra
///
/// ### The following identifiers will be replaced
///
-/// **`gl_command`**<br>
+/// **`gl_command_name`**<br>
/// Will be replaced by the full command name. For example, `glViewport`.
///
/// **`gl_command_ret_type`**<br>
@@ -49,9 +49,9 @@ static OPENGL_REGISTRY: Lazy<Registry> = 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));
/// }
/// }
/// ```