Add changelog entry
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d04354d..32204e7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 0.11.2
+
+* Added Logger.detached - a convinience factory to obtain a logger that is not
+  attached to this library's logger hierarchy.
+
 ## 0.11.1+1
 
 * Include default error with the auto-generated stack traces.
diff --git a/lib/logging.dart b/lib/logging.dart
index 1d835fc..493d859 100644
--- a/lib/logging.dart
+++ b/lib/logging.dart
@@ -63,7 +63,7 @@
 
   /// Creates a new detached [Logger].
   ///
-  /// Returns a new [Logger] instance (unlike [new Logger], which returns a
+  /// Returns a new [Logger] instance (unlike `new Logger`, which returns a
   /// [Logger] singleton), which doesn't have any parent or children,
   /// and it's not a part of the global hierarchial loggers structure.
   ///