[llvm] r255301 - Fix non-ascii quotes.

Eric Christopher via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 10 13:38:56 PST 2015


Author: echristo
Date: Thu Dec 10 15:38:56 2015
New Revision: 255301

URL: http://llvm.org/viewvc/llvm-project?rev=255301&view=rev
Log:
Fix non-ascii quotes.

Modified:
    llvm/trunk/docs/DeveloperPolicy.rst

Modified: llvm/trunk/docs/DeveloperPolicy.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/DeveloperPolicy.rst?rev=255301&r1=255300&r2=255301&view=diff
==============================================================================
--- llvm/trunk/docs/DeveloperPolicy.rst (original)
+++ llvm/trunk/docs/DeveloperPolicy.rst Thu Dec 10 15:38:56 2015
@@ -528,12 +528,12 @@ for llvm users and not imposing a big bu
 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




More information about the llvm-commits mailing list