From d22c1f7dd62ae355ed57f9e92fc2edf93577da46 Mon Sep 17 00:00:00 2001 From: Alexander Koz Date: Sat, 7 Oct 2023 17:01:43 +0400 Subject: [PATCH] fix sprite doc --- Cargo.lock | 2 +- api/sprite/Cargo.toml | 2 +- api/sprite/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21740d22..c0681873 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2615,7 +2615,7 @@ dependencies = [ [[package]] name = "playdate-sprite" -version = "0.2.6" +version = "0.2.7" dependencies = [ "playdate-display", "playdate-graphics", diff --git a/api/sprite/Cargo.toml b/api/sprite/Cargo.toml index 98ffa0e7..6597927d 100644 --- a/api/sprite/Cargo.toml +++ b/api/sprite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "playdate-sprite" -version = "0.2.6" +version = "0.2.7" readme = "README.md" description = "High-level sprite API built on-top of Playdate API" keywords = ["playdate", "sdk", "api", "gamedev"] diff --git a/api/sprite/src/lib.rs b/api/sprite/src/lib.rs index 6e409b1e..dfb2682e 100644 --- a/api/sprite/src/lib.rs +++ b/api/sprite/src/lib.rs @@ -276,7 +276,7 @@ pub trait TypedSprite: AsRaw + SpriteApi { } -/// Represents strictly typed sprite, includes associated user-data and free-on-drop flag. +/// Type of sprite, includes associated user-data and free-on-drop flag. pub trait SpriteType { /// Type of API access-point. type Api: api::Api;