From bcd3ac44f626d62a4cf82a6d057c749cebf8f741 Mon Sep 17 00:00:00 2001 From: qwer252 Date: Wed, 11 Jun 2025 14:57:26 +0800 Subject: [PATCH] Update lib.rs --- listings/ch18-oop/listing-18-07/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listings/ch18-oop/listing-18-07/src/lib.rs b/listings/ch18-oop/listing-18-07/src/lib.rs index b16cd01..4add40e 100644 --- a/listings/ch18-oop/listing-18-07/src/lib.rs +++ b/listings/ch18-oop/listing-18-07/src/lib.rs @@ -23,7 +23,7 @@ pub struct Button { impl Draw for Button { fn draw(&self) { - // code to actually draw a button + // 实际绘制按钮的代码 } } // ANCHOR_END: here