From: Eric Christopher Date: Thu, 10 Dec 2015 21:38:56 +0000 (+0000) Subject: Fix non-ascii quotes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e4b68811b11a691215ea6b7e787b69f313ce8294;p=oota-llvm.git Fix non-ascii quotes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255301 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/DeveloperPolicy.rst b/docs/DeveloperPolicy.rst index 5eac458b8e7..5a83f5e43a8 100644 --- a/docs/DeveloperPolicy.rst +++ b/docs/DeveloperPolicy.rst @@ -528,12 +528,12 @@ for llvm users and not imposing a big burden on llvm developers: C API Changes ---------------- -* Stability Guarantees: The C API is, in general, a “best effort” for stability. +* Stability Guarantees: The C API is, in general, a "best effort" for stability. This means that we make every attempt to keep the C API stable, but that stability will be limited by the abstractness of the interface and the stability -of the C++ API that it wraps. In practice, this means that things like “create -debug info” or “create this type of instruction” are likely to be less stable -than “take this IR file and JIT it for my current machine”. +of the C++ API that it wraps. In practice, this means that things like "create +debug info" or "create this type of instruction" are likely to be less stable +than "take this IR file and JIT it for my current machine". * Release stability: We won’t break the C API on the release branch with patches that go on that branch, with the exception that if we will fix an unintentional