Skip to content

Commit

Permalink
Merge pull request #9236 from SridharCR/docs_fixes
Browse files Browse the repository at this point in the history
Fixes #9234
  • Loading branch information
esc committed Oct 11, 2023
2 parents 9f74128 + a09c39c commit 0f903a9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/source/cuda/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ Monte Carlo Integration
=======================

This example shows how to use Numba to approximate the value of a definite integral by rapidly generating
random numbers on the GPU. A detailed description of the mathematical mechanics of Monte Carlo integeration
random numbers on the GPU. A detailed description of the mathematical mechanics of Monte Carlo integration
is out of the scope of the example, but it can briefly be described as an averaging process where the area
under the curve is approximated by taking the average of many rectangles formed by its function values.

Expand Down
4 changes: 2 additions & 2 deletions docs/source/cuda/minor_version_compatibility.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _minor-version-compatibility:

CUDA Minor Version Compatiblity
===============================
CUDA Minor Version Compatibility
================================

CUDA `Minor Version Compatibility
<https://docs.nvidia.com/deploy/cuda-compatibility/index.html#minor-version-compatibility>`_
Expand Down
2 changes: 1 addition & 1 deletion docs/source/proposals/jit-classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ The use of ``classmethod`` is not supported.
Inheritance
~~~~~~~~~~~

Class inhertance is not considered in this proposal. The only accepted base
Class inheritance is not considered in this proposal. The only accepted base
class for a jitclass is `object`.

Supported targets
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Installation
Compatibility
-------------

For software compatability, please see the section on :ref:`version support
For software compatibility, please see the section on :ref:`version support
information<numba_support_info>` for details.

Our supported platforms are:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user/parallel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ The following example demonstrates a product reduction on a two-dimensional arra
Numba's ``prange`` when ``parallel=False``. However, for
``parallel=True``, if the range is identifiable as strictly positive,
the type of the induction variable will be ``uint64``. The impact of
a ``uint64`` induction variable is often most noticable when
a ``uint64`` induction variable is often most noticeable when
undertaking operations involving it and a signed integer. Under
Numba's type coercion rules, such a case will commonly result in the
operation producing a floating point result type.
Expand Down
2 changes: 1 addition & 1 deletion docs/upcoming_changes/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ small **ReST**-formatted text that will be added to the next what's new page.
Make sure to use full sentences with correct case and punctuation, and please
try to use Sphinx intersphinx using backticks. The fragment should have a
header line and an underline using ``""""""""`` followed by description of
your user-facing changes as they should appear in the relase notes.
your user-facing changes as they should appear in the release notes.

Each file should be named like ``<PULL REQUEST>.<TYPE>.rst``, where
``<PULL REQUEST>`` is a pull request number, and ``<TYPE>`` is one of:
Expand Down

0 comments on commit 0f903a9

Please sign in to comment.