From e79813cc0f371719d2be4ee0bff2c580faed14dd Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 13 Jun 2011 13:59:49 -0700 Subject: [PATCH] Grr, Markdown doesn't do the right thing with multi-paragraph line items. --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f67c4fc..24b9bbb 100644 --- a/README.md +++ b/README.md @@ -28,12 +28,11 @@ certain design goals. example, a `Rectangle` can accept an `IRectangle` to indicate to the caller that it will not (and indeed cannot) mutate the supplied entity. Similarly, a read-only interface can be returned to a private internal field without fear - that the recipient will mutate it and wreak havoc. - - Bear in mind that the interfaces have performance implications in extremely - performance sensitive situations. So use them anyway and then profile your - application to determine whether there are places where you need to sacrifice - code clarity and safety to obtain higher performance. + that the recipient will mutate it and wreak havoc. Bear in mind that the + interfaces have performance implications in extremely performance sensitive + situations. So use them anyway and then profile your application to determine + whether there are places where you need to sacrifice code clarity and safety + to obtain higher performance. * The library supports garbage creation avoidance (for applications which are sensitive to garbage collection pauses, like video games). For example, in