aboutsummaryrefslogtreecommitdiff
path: root/std/default/format.pk
diff options
context:
space:
mode:
authorJJ2023-12-28 10:18:50 +0000
committerJJ2023-12-28 10:40:26 +0000
commit774a35ae21dada36af48ae32c862b22587fba107 (patch)
tree5dfc8153a061192cab76ebaa6c56615dac9e4b09 /std/default/format.pk
parent0121346e894fb0e7f60312b16986d82109e4d86b (diff)
docs: sweeping changes. cement an understanding of error handling, async, modules, and unions. rewrite documentation on interfaces. complete the introductory overview. many minor cleanups.
Diffstat (limited to 'std/default/format.pk')
-rw-r--r--std/default/format.pk4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/default/format.pk b/std/default/format.pk
index ee8997d..b117632 100644
--- a/std/default/format.pk
+++ b/std/default/format.pk
@@ -7,8 +7,8 @@ pub type Display = interface
str(Self): str
dbg(Self): str
-## The Debug interface. Broadly implemented for every type with compiler magic,
-## types can (and should) override the generic implementations.
+## The Debug interface. Broadly implemented for every type with compiler magic.
+## Types can (and should) override the generic implementations.
pub type Debug = interface
dbg(Self): str