Skip to content

Commit c2f70ed

Browse files
committed
improve wording
1 parent eb383a9 commit c2f70ed

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

docs/contributor/IMPLEMENTATION_DETAILS.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
## Abstract Operations on Python Objects
44

55
Many generic operations on Python objects in CPython are defined in the header
6-
files `abstract.c` and `abstract.h`. These operations are widely used and their
6+
files `object.h` and `abstract.h`. These operations are widely used and their
77
interplay and intricacies are the cause for the conversion, error message, and
88
control flow bugs when not mimicked correctly. Our current approach is to
9-
provide many of these abstract operations as part of the
10-
`PythonObjectLibrary`.
9+
provide many of these abstract operations as part of the `PythonObjectLibrary`.
1110

1211
### Common operations in the PythonObjectLibrary
1312

docs/user/FAQ.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ supported. Please see our [migration document](./JYTHON) for details.
1818
### Do I need to compile and run native modules as LLVM bitcode to use GraalPython?
1919

2020
If you want to run C extensions or use certain built-in features, yes, you need
21-
to run them compiled to LLVM bitcode. However, many of the core features of
22-
Python, including large parts of the `os` API, are implemented in Java so many
23-
standard library modules and packages work without requiring running LLVM
24-
bitcode.
21+
to build the module with GraalPython and then it will run using on the GraalVM
22+
LLVM runtime. However, many of the core features of Python, including large
23+
parts of the `os` API, are implemented in Java so many standard library modules
24+
and packages work without requiring running LLVM bitcode.
2525

2626
### Can I use GraalVM sandboxing features with GraalPython?
2727

@@ -53,7 +53,7 @@ CPython. In any case, both with native image or when running on JVM we first
5353
need to warm up to reach peak performance. This is a complicated story in
5454
itself, but in general it can take a while (a minute or two) after you have
5555
reached and are running your core workload. We are continuously working on
56-
improving this
56+
improving this.
5757

5858
### Can I share warmed up code between multiple Python contexts?
5959

0 commit comments

Comments
 (0)