this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix formatting in vxfw.zig

authored by

Mason Schmidgall and committed by
Tim Culverhouse
cfa63114 ea0c083a

+2 -2
+2 -2
src/vxfw/vxfw.zig
··· 142 142 } 143 143 144 144 /// Copy content to clipboard. 145 - /// content is duplicated using self.alloc. 145 + /// content is duplicated using self.alloc. 146 146 /// Caller retains ownership of their copy of content. 147 147 pub fn copyToClipboard(self: *EventContext, content: []const u8) Allocator.Error!void { 148 148 try self.addCmd(.{ .copy_to_clipboard = try self.alloc.dupe(u8, content) }); 149 - } 149 + } 150 150 151 151 /// Set window title. 152 152 /// title is duplicated using self.alloc.