Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix argument inconsistency in example documentation #1208

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dropshot/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright 2024 Oxide Computer Company
// Copyright 2024 Brianna Bennett

//! Dropshot is a general-purpose crate for exposing REST APIs from a Rust
//! program. Planned highlights include:
Expand Down Expand Up @@ -50,7 +51,6 @@
//! use dropshot::ConfigLoggingLevel;
//! use dropshot::HandlerTaskMode;
//! use dropshot::ServerBuilder;
//! use std::sync::Arc;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), String> {
Expand All @@ -67,7 +67,7 @@
//! // Register API functions -- see detailed example or ApiDescription docs.
//!
//! // Start the server.
//! let server = ServerBuilder::new(api, Arc::new(()), log)
//! let server = ServerBuilder::new(api, (), log)
//! .start()
//! .map_err(|error| format!("failed to start server: {}", error))?;
//!
Expand Down