diff --git a/dig/doc.go b/dig/doc.go index 9e97beea4..c5c6a68dd 100644 --- a/dig/doc.go +++ b/dig/doc.go @@ -20,7 +20,7 @@ // Package dig is the Dependency Injection Graph. // -// Package dig provides a fairly opinionated way of resolving object dependencies. +// package dig provides an opinionated way of resolving object dependencies. // There are two sides of dig: // Register and Resolve. // diff --git a/doc.go b/doc.go index accbf5812..c09a8bc57 100644 --- a/doc.go +++ b/doc.go @@ -27,19 +27,28 @@ // // Status // -// Alpha. Expect minor API changes and bug fixes. (Beta release coming soon) +// Beta. Expect minor API changes and bug fixes. See our changelog (CHANGELOG.md)for more. +// // // What's included // // UberFx builds the following into your service: -// * Configuration, logging, metrics, and tracing setup by default -// * Configuration provider that seamlessly merges static and dynamic config -// * Application-level as well as runtime metrics for effective monitoring -// * Context-aware logging for easy debugging -// * RPC module with Thrift interfaces for microservices -// * HTTP module with intelligent defaults for web applications -// * Task module for executing async tasks durably // +// • Logging backed by the zap logger +// +// • Configuration provider that seamlessly merges static and dynamic config +// +// • Application-level as well as runtime metrics for effective monitoring +// +// • Request tracing for application-level instrumentation +// +// • Context-aware logging for easy debugging +// +// • RPC module with Thrift interfaces for microservices +// +// • HTTP module with intelligent defaults for web applications +// +// • Task module for executing async tasks durably // // Examples //