Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jul 31, 2024
1 parent 47cd45c commit c64d869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions puffin_http/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@ impl Server {
///
/// /// Installs the server's sink into the custom profiler
/// #[doc(hidden)]
/// fn [< $name:lower _profiler_server_install >](sink: puffin::FrameSink) -> FrameSinkId {
/// fn [< $name:lower _profiler_server_install >](sink: puffin::FrameSink) -> puffin::FrameSinkId {
/// [< $name:lower _profiler_lock >]().add_sink(sink)
/// }
///
/// /// Drops the server's sink and removes from profiler
/// #[doc(hidden)]
/// fn [< $name:lower _profiler_server_drop >](id: FrameSinkId){
/// fn [< $name:lower _profiler_server_drop >](id: puffin::FrameSinkId){
/// [< $name:lower _profiler_lock >]().remove_sink(id);
/// }
///
Expand Down

0 comments on commit c64d869

Please sign in to comment.